From a45922cd66cf8a7a03905c020e50ab01dc05cfa9 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 25 Jan 2009 18:47:21 +0100 Subject: use g_free() instead of free() On some platforms, g_free() must be used for memory allocated by GLib. This patch intends to correct a lot of occurrences, but is probably not complete. --- src/decoder/mikmod_plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/decoder/mikmod_plugin.c') diff --git a/src/decoder/mikmod_plugin.c b/src/decoder/mikmod_plugin.c index a22fd03bf..2fce23f7d 100644 --- a/src/decoder/mikmod_plugin.c +++ b/src/decoder/mikmod_plugin.c @@ -152,7 +152,7 @@ static void mod_close(mod_Data * data) { Player_Stop(); Player_Free(data->moduleHandle); - free(data); + g_free(data); } static void -- cgit v1.2.3