+2007-11-20 Stefan Kost <ensonic@users.sf.net>
+
+ * gst/gstpreset.c:
+ Plug a leak and fix saving.
+
2007-11-20 Sebastian Dröge <slomo@circular-chaos.org>
* docs/gst/gstreamer-sections.txt:
if ((properties = g_object_class_list_properties (G_OBJECT_CLASS
(GST_ELEMENT_GET_CLASS (self)), &number_of_properties))) {
+ GST_INFO (" filtering properties: %u", number_of_properties);
for (i = 0; i < number_of_properties; i++) {
property = properties[i];
if (preset_skip_property (property) ||
names = g_list_prepend (names, property->name);
}
+ g_free (properties);
+ } else {
+ GST_INFO ("no properties");
}
return names;
}
g_hash_table_insert (data, (gpointer) property->name, (gpointer) str);
str = NULL;
}
- g_list_free (properties);
}
/* @todo: handle childproxy properties as well */
GST_INFO (" saved");
+ g_list_free (properties);
} else {
GST_INFO ("no properties");
}