# HG changeset patch # User Luke Schierer # Date 1067906426 0 # Node ID 0b7121f3c443898d6bc954362f3eeb8cf1aef40c # Parent d176a85f2581dde6712a78d1416f574bcdd36407 [gaim-migrate @ 8025] (19:40:37) Paco-Paco: you can never g_free something which was allocated with the system malloc, and you can never free anything which was allocated with g_malloc committer: Tailor Script diff -r d176a85f2581 -r 0b7121f3c443 src/protocols/yahoo/yahoo.c --- a/src/protocols/yahoo/yahoo.c Tue Nov 04 00:38:51 2003 +0000 +++ b/src/protocols/yahoo/yahoo.c Tue Nov 04 00:40:26 2003 +0000 @@ -1345,8 +1345,8 @@ yahoo_send_packet(yd, pack); yahoo_packet_free(pack); - g_free(password_hash); - g_free(crypt_hash); + free(password_hash); + free(crypt_hash); } static void yahoo_process_auth(GaimConnection *gc, struct yahoo_packet *pkt)