Changeset 3689

Show
Ignore:
Timestamp:
06/03/08 19:03:48
Author:
svillar
Message:
  • Ported POP3 crash fix from trunk
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • releases/modest/diablo-pe1/ChangeLog

    r3677 r3689  
     12008-06-03  Sergio Villar Senin  <svillar@igalia.com> 
     2 
     3        * camel/providers/pop3/camel-pop3-store.c (connect_to_server): 
     4        fixed a crash when there is a connection problem related to TLS  
     5 
     62008-05-26  Philip Van Hoof <pvanhoof@gnome.org> 
     7 
     8        * Bugfix when fetching parts and messages 
     9        * Fixed various copyright note issues 
     10 
     112008-05-21  Philip Van Hoof <pvanhoof@gnome.org> 
     12 
     13        * Help piece of shit IMAP servers that don't do SEARCH correctly, like 
     14        AOL's IMAP server May 2008, by asking for the same thing using UID 
     15        FETCH. 
     16 
     172008-05-21  Philip Van Hoof <pvanhoof@gnome.org> 
     18 
     19        * Writing in chunks of 64 bytes 
     20        * Timeout per chunk is 15 seconds 
     21 
    1222008-05-20  Philip Van Hoof <pvanhoof@gnome.org> 
    223 
  • releases/modest/diablo-pe1/libtinymail-camel/camel-lite/camel/providers/pop3/camel-pop3-store.c

    r3475 r3689  
    582582        } 
    583583 
    584         camel_object_unref (CAMEL_OBJECT (store->engine)); 
     584        /* camel_pop3_engine_iterate could issue a disconnect that 
     585           could set engine to NULL */ 
     586        if (store->engine) 
     587                camel_object_unref (CAMEL_OBJECT (store->engine)); 
    585588        camel_object_unref (CAMEL_OBJECT (tcp_stream)); 
    586589        g_static_rec_mutex_lock (store->eng_lock);