Changeset 3598
- Timestamp:
- 08/25/08 14:55:47 (3 months ago)
- Files:
-
- 1 modified
-
plugins/syncml/src/syncml_callbacks.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
plugins/syncml/src/syncml_callbacks.c
r3587 r3598 71 71 for (; o; o = o->next) { 72 72 SmlDatabase *database = o->data; 73 g_assert(database->commitCtx); 74 report_success_on_context(&(database->commitCtx)); 73 /* If the connection finished after an error 74 * then it can happen that the commitCtx was 75 * already signaled. 76 */ 77 if(database->commitCtx) 78 report_success_on_context(&(database->commitCtx)); 75 79 } 76 80 }
