Ignore:
Timestamp:
Aug 3, 2009, 2:29:12 PM (15 years ago)
Author:
Christoph Mayer
Message:

maemo segfault wegen static object ctors workaround

Location:
source/ariba/overlay/modules/chord
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • source/ariba/overlay/modules/chord/Chord.cpp

    r5555 r5624  
    133133const EndpointDescriptor& Chord::resolveNode(const NodeID& node) {
    134134        const route_item* item = table->get(node);
    135         if (item == NULL || item->info.isUnspecified()) return EndpointDescriptor::UNSPECIFIED;
     135        if (item == NULL || item->info.isUnspecified()) return EndpointDescriptor::UNSPECIFIED();
    136136        return baseoverlay.getEndpointDescriptor(item->info);
    137137}
  • source/ariba/overlay/modules/chord/Chord.h

    r5316 r5624  
    104104        /// @see OverlayInterface.h
    105105        virtual void joinOverlay(
    106                 const EndpointDescriptor& boot = EndpointDescriptor::UNSPECIFIED
     106                const EndpointDescriptor& boot = EndpointDescriptor::UNSPECIFIED()
    107107        );
    108108
Note: See TracChangeset for help on using the changeset viewer.