Changeset 3542

Show
Ignore:
Timestamp:
08/16/08 16:18:39 (4 months ago)
Author:
dgollub
Message:

More instrumentation to hunt spurious mapping entrise without UID.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/opensync/engine/opensync_mapping_entry_engine.c

    r3538 r3542  
    9595         
    9696        OSyncMappingEntry *entry = engine->entry; 
     97        const char *mapping_entry_uid = osync_mapping_entry_get_uid(entry);  
     98        osync_assert(mapping_entry_uid); 
    9799         
    98         if (!strcmp(osync_mapping_entry_get_uid(entry), osync_change_get_uid(change))) 
     100        if (!strcmp(mapping_entry_uid, osync_change_get_uid(change))) 
    99101                return TRUE; 
    100102