diff src/protocols/trepia/trepia.c @ 7606:08c9d0dcf906

[gaim-migrate @ 8229] " Some things allocated with g_malloc() were being free()'d instead of g_free()'d This patch fixes the ones I managed to find." --Stu Tomlinson (nosnilmot) committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Sun, 23 Nov 2003 15:32:25 +0000
parents e6e194f9d44c
children 1b8261f374ea
line wrap: on
line diff
--- a/src/protocols/trepia/trepia.c	Sun Nov 23 15:25:04 2003 +0000
+++ b/src/protocols/trepia/trepia.c	Sun Nov 23 15:32:25 2003 +0000
@@ -592,7 +592,7 @@
 		if (*buffer != '\0')
 			g_hash_table_insert(data->keys, data->tag, buffer);
 		else
-			free(buffer);
+			g_free(buffer);
 	}
 
 	data->tag = NULL;