GNOME Bugzilla – Bug 309005
leaks in gstlibfame.c
Last modified: 2005-06-30 10:15:17 UTC
(as usual, no clue about what this code really does, found this one with grep) gst-plugins/ext/libfame/gstlibfame.c:266 type = g_enum_register_static (g_strdup_printf ("GstFameEnc_%s", current_type), (GEnumValue *) array->data); pspec = (current_type, current_type, g_strdup_printf ("The FAME \"%s\" object", current_type), type, default_index, G_PARAM_READWRITE); the code looks suspicious to me: both g_enum_register_static and g_param_spec_enum take a const *gchar, so the strduped string is leaked afaics
Fixed, ty.