Changeset 2655
- Timestamp:
- 08/31/07 17:09:42
- Files:
-
- trunk/ChangeLog (modified) (1 diff)
- trunk/libtinymail-maemo/tny-maemo-conic-device.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ChangeLog
r2654 r2655 4 4 - don't try to normalize to GMT (camel already does that) 5 5 - only use Date: for received if not received date is found 6 * don't try to disconnect from conic if the IAP == NULL, as that 7 causes a segfault 6 8 7 9 2007-08-29 Dirk-Jan C. Binnema <dirk-jan.binnema@nokia.com> trunk/libtinymail-maemo/tny-maemo-conic-device.c
r2651 r2655 29 29 #include <string.h> /* For strcmp() */ 30 30 31 31 32 #ifdef MAEMO_CONIC_DUMMY 32 33 #include <gtk/gtkmessagedialog.h> … … 427 428 return FALSE; 428 429 } 429 } else 430 if (!con_ic_connection_disconnect (priv->cnx)) {431 g_warning ("could not send disconnect dbus message");432 return FALSE;433 }430 } else { 431 /* don't try to disconnect if iap_id==NULL, or conic will crash... */ 432 g_warning ("could not send disconnect dbus message"); 433 return FALSE; 434 } 434 435 #endif /* MAEMO_CONIC_DUMMY*/ 435 436
