# HG changeset patch # User Nathan Walp # Date 1057589395 0 # Node ID 74b281b4ae295794268fac0d9d3db586320d3343 # Parent c062c4bf58ac85a779ae5ede9d81e7c2158e5e6b [gaim-migrate @ 6503] odd man out committer: Tailor Script diff -r c062c4bf58ac -r 74b281b4ae29 src/protocols/oscar/oscar.c --- a/src/protocols/oscar/oscar.c Mon Jul 07 04:44:36 2003 +0000 +++ b/src/protocols/oscar/oscar.c Mon Jul 07 14:49:55 2003 +0000 @@ -1834,8 +1834,8 @@ od->icontimer = g_timeout_add(500, gaim_icon_timerfunc, gc); } } - free(saved_b16); - free(b16); + g_free(saved_b16); + g_free(b16); } serv_got_update(gc, info->sn, 1, (info->warnlevel/10.0) + 0.5, signon, time_idle, type); diff -r c062c4bf58ac -r 74b281b4ae29 src/util.c --- a/src/util.c Mon Jul 07 04:44:36 2003 +0000 +++ b/src/util.c Mon Jul 07 14:49:55 2003 +0000 @@ -441,7 +441,7 @@ if (!data || !length) return NULL; - ascii = malloc(length*2 + 1); + ascii = g_malloc(length*2 + 1); for (i=0; i