pngdec: match g_malloc() with g_free()
authorJohn Keeping <john.keeping at lineone.net>
Mon, 25 May 2009 14:33:35 +0000 (16:33 +0200)
committerWim Taymans <wim.taymans@collabora.co.uk>
Mon, 25 May 2009 14:33:35 +0000 (16:33 +0200)
Matching g_malloc() with a g_free() is important when a custom allocator is
installed.
Fixes #583803

ext/libpng/gstpngdec.c

index d7af9a5..524b468 100644 (file)
@@ -514,7 +514,7 @@ gst_pngdec_task (GstPad * pad)
 
   /* Read the actual picture */
   png_read_image (pngdec->png, rows);
-  free (rows);
+  g_free (rows);
 
   /* Push the raw RGB frame */
   ret = gst_pad_push (pngdec->srcpad, buffer);