encoding-target: Properly free temporary list
authorThibault Saunier <thibault.saunier@osg.samsung.com>
Fri, 6 Jan 2017 14:39:27 +0000 (11:39 -0300)
committerThibault Saunier <thibault.saunier@osg.samsung.com>
Fri, 6 Jan 2017 14:40:20 +0000 (11:40 -0300)
gst-libs/gst/pbutils/encoding-target.c

index 464874c..04e3fb8 100644 (file)
@@ -1079,7 +1079,7 @@ gst_encoding_list_available_categories (void)
     else
       g_free (name);
   }
-  g_free (tmp1);
+  g_list_free (tmp1);
 
   return res;
 }