mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
udpsrc: fix use of freed memory
This commit is contained in:
parent
b780639b2c
commit
73754081e5
1 changed files with 1 additions and 1 deletions
|
@ -662,7 +662,7 @@ gst_udpsrc_get_property (GObject * object, guint prop_id, GValue * value,
|
|||
g_value_set_string (value, udpsrc->multi_iface);
|
||||
break;
|
||||
case PROP_URI:
|
||||
g_value_take_string (value, udpsrc->uri);
|
||||
g_value_set_string (value, udpsrc->uri);
|
||||
break;
|
||||
case PROP_CAPS:
|
||||
gst_value_set_caps (value, udpsrc->caps);
|
||||
|
|
Loading…
Reference in a new issue