Changeset 3544

Show
Ignore:
Timestamp:
08/17/08 15:46:01 (4 months ago)
Author:
dgollub
Message:

Don't use report_success_on_context() for sync_done(), since
report_success_on_context() requires that the ref_count get increased in
advanced. Thats not the case for sync_done(). Just do
osync_context_report_success() for now.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • plugins/syncml/src/syncml_common.c

    r3519 r3544  
    329329void sync_done(void *data, OSyncPluginInfo *info, OSyncContext *ctx) 
    330330{ 
    331         report_success_on_context(&ctx); 
     331        osync_context_report_success(ctx); 
    332332} 
    333333