Changeset 3304

Show
Ignore:
Timestamp:
05/03/08 00:13:32 (3 months ago)
Author:
dgollub
Message:

Fixed wrong iteration which caused segfault. #731

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/file-sync/src/file_sync.c

    r3299 r3304  
    595595         
    596596        OSyncList *u, *uids = osync_hashtable_get_deleted(dir->hashtable); 
    597         for (u = uids; uids; u = u->next) { 
     597        for (u = uids; u; u = u->next) { 
    598598                OSyncChange *change = osync_change_new(&error); 
    599599                if (!change) {