[Webkit-unassigned] [Bug 125411] [GTK] media/video-preload.html is flakily crashing on WK2
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Mon Dec 9 10:35:11 PST 2013
https://bugs.webkit.org/show_bug.cgi?id=125411
--- Comment #10 from Brendan Long <b.long at cablelabs.com> 2013-12-09 10:33:25 PST ---
One issue is that GValue is calling __gst_tag_list_free instead of gst_tag_list_unref, but it should still work since it uses __gst_tag_list_copy to copy it.
static void
__gst_tag_list_free (GstTagList * list)
{
g_return_if_fail (GST_IS_TAG_LIST (list));
#ifdef DEBUG_REFCOUNT
GST_CAT_TRACE (GST_CAT_TAGS, "freeing taglist %p", list);
#endif
gst_structure_free (GST_TAG_LIST_STRUCTURE (list));
g_slice_free1 (sizeof (GstTagListImpl), list);
}
static GstTagList *
__gst_tag_list_copy (const GstTagList * list)
{
const GstStructure *s;
g_return_val_if_fail (GST_IS_TAG_LIST (list), NULL);
s = GST_TAG_LIST_STRUCTURE (list);
return gst_tag_list_new_internal (gst_structure_copy (s));
}
--
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the webkit-unassigned
mailing list