Changeset 2469
- Timestamp:
- 07/13/07 00:21:34
- Files:
-
- trunk/ChangeLog (modified) (1 diff)
- trunk/libtinymail-camel/camel-lite/camel/providers/pop3/camel-pop3-folder.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ChangeLog
r2467 r2469 1 2007-07-13 Philip Van Hoof <pvanhoof@gnome.org> 2 3 * Allowing the POP code to do RETRs while the TOPs are working (while 4 summary is being retrieved, allow the POP code to receive messages 5 already) 6 1 7 2007-07-12 Sergio Villar Senin <svillar@igalia.com> 2 8 trunk/libtinymail-camel/camel-lite/camel/providers/pop3/camel-pop3-folder.c
r2466 r2469 761 761 CamelMessageInfoBase *mi; gboolean im_certain=FALSE; 762 762 763 g_static_rec_mutex_lock (pop3_store->eng_lock);764 765 763 stream = camel_data_cache_get(pop3_store->cache, "cache", uid, NULL); 766 764 if (stream) … … 781 779 camel_object_unref (CAMEL_OBJECT (stream)); 782 780 783 g_static_rec_mutex_unlock (pop3_store->eng_lock);784 785 781 return message; 786 782 } … … 794 790 camel_exception_setv (ex, CAMEL_EXCEPTION_FOLDER_INVALID_UID, 795 791 _("No message with UID %s"), uid); 796 797 g_static_rec_mutex_unlock (pop3_store->eng_lock);798 799 792 return NULL; 800 793 } … … 939 932 camel_operation_end(NULL); 940 933 941 g_static_rec_mutex_unlock (pop3_store->eng_lock);942 943 934 return message; 944 935 } … … 983 974 984 975 if (fi->cmd != NULL) { 976 985 977 while ((i = camel_pop3_engine_iterate(pop3_store->engine, fi->cmd)) > 0) 986 978 ;
