pidgin: fa58d38b: I can't think of any reason we would nee...
markdoliner at pidgin.im
markdoliner at pidgin.im
Tue Jun 3 01:21:11 EDT 2008
-----------------------------------------------------------------
Revision: fa58d38b47ddd3adf4314e997ff052d610af4d09
Ancestor: 0e28fcf0c7064b00d3ef3a9ffeaef0c0f8d98222
Author: markdoliner at pidgin.im
Date: 2008-06-03T05:18:52
Branch: im.pidgin.pidgin
URL: http://d.pidgin.im/viewmtn/revision/info/fa58d38b47ddd3adf4314e997ff052d610af4d09
Modified files:
libpurple/plugins/ssl/ssl-gnutls.c
ChangeLog:
I can't think of any reason we would need to use the zero versions of
these functions.
-------------- next part --------------
============================================================
--- libpurple/plugins/ssl/ssl-gnutls.c b1e7f1444a472264f44af466a4063697f2158a44
+++ libpurple/plugins/ssl/ssl-gnutls.c ad74b6e213dde98eb5052f85890f7b82931758d4
@@ -54,8 +54,8 @@ ssl_gnutls_init_gnutls(void)
If there are strange bugs, perhaps look here (yes, I am a
hypocrite) */
gnutls_global_set_mem_functions(
- (gnutls_alloc_function) g_malloc0, /* malloc */
- (gnutls_alloc_function) g_malloc0, /* secure malloc */
+ (gnutls_alloc_function) g_malloc, /* malloc */
+ (gnutls_alloc_function) g_malloc, /* secure malloc */
NULL, /* mem_is_secure */
(gnutls_realloc_function) g_realloc, /* realloc */
(gnutls_free_function) g_free /* free */
More information about the Commits
mailing list