Changeset 3739

Show
Ignore:
Timestamp:
08/21/08 12:48:59
Author:
svillar
Message:

Merged a memory leak fix from upstream

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/libtinymail-camel/camel-lite/ChangeLog

    r3541 r3739  
    22this version, and the other way around). Changes to camel-lite that are 
    33related to Tinymail go into ../../ChangeLog 
     42008-08-21  Sergio Villar Senin  <svillar@igalia.com> 
     5 
     6        * camel/camel.c (camel_init): merged a fix from upstream for a 
     7        memory leak  
    48 
    592008-04-03  Philip Van Hoof <pvanhoof@gnome.org> 
  • trunk/libtinymail-camel/camel-lite/camel/camel.c

    r3717 r3739  
    103103                        /* fall back on using volatile dbs? */ 
    104104                        if (NSS_NoDB_Init (nss_configdir) == SECFailure) { 
     105                                g_free (nss_configdir); 
    105106                                g_warning ("Failed to initialize NSS"); 
    106107                                return -1; 
     
    119120                SSL_OptionSetDefault (SSL_ENABLE_TLS, PR_TRUE); 
    120121                SSL_OptionSetDefault (SSL_V2_COMPATIBLE_HELLO, PR_TRUE /* maybe? */); 
     122 
     123                g_free (nss_configdir); 
    121124        } 
    122125#endif /* HAVE_NSS */