mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-12 11:04:09 +00:00
examples: fix bogus g_object_unref in helloworld example
GMainLoop is not a GObject. https://bugzilla.gnome.org/show_bug.cgi?id=424143
This commit is contained in:
parent
56b3acb043
commit
51764c3f44
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ main (gint argc, gchar * argv[])
|
|||
/* cleanup */
|
||||
gst_element_set_state (playbin, GST_STATE_NULL);
|
||||
g_object_unref (playbin);
|
||||
g_object_unref (loop);
|
||||
g_main_loop_unref (loop);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue