mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 07:58:51 +00:00
ipcpipeline: don't use g_steal_pointer; it's not in the current required version of GLib
We depend on GLib 2.40, g_steal_pointer was introduced in 2.44. https://bugzilla.gnome.org/show_bug.cgi?id=785698
This commit is contained in:
parent
30f5abc32c
commit
58e2b2ef1c
1 changed files with 2 additions and 1 deletions
|
@ -2305,7 +2305,8 @@ gst_value_deserialize_event (GValue * dest, const gchar * s)
|
||||||
goto fail;
|
goto fail;
|
||||||
gst_event_set_running_time_offset (ev, g_value_get_int64 (&val));
|
gst_event_set_running_time_offset (ev, g_value_get_int64 (&val));
|
||||||
|
|
||||||
g_value_take_boxed (dest, g_steal_pointer (&ev));
|
g_value_take_boxed (dest, ev);
|
||||||
|
ev = NULL;
|
||||||
ret = TRUE;
|
ret = TRUE;
|
||||||
|
|
||||||
fail:
|
fail:
|
||||||
|
|
Loading…
Reference in a new issue