mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
rtsp-media: Call g_free() instead of g_object_unref() on multicast-iface strings
https://bugzilla.gnome.org/show_bug.cgi?id=763000#c5
This commit is contained in:
parent
0121cbc500
commit
800bed8c9c
2 changed files with 2 additions and 2 deletions
|
@ -829,7 +829,7 @@ gst_rtsp_media_factory_set_multicast_iface (GstRTSPMediaFactory * media_factory,
|
|||
g_mutex_unlock (&priv->lock);
|
||||
|
||||
if (old)
|
||||
g_object_unref (old);
|
||||
g_free (old);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -1606,7 +1606,7 @@ gst_rtsp_media_set_multicast_iface (GstRTSPMedia * media,
|
|||
g_mutex_unlock (&priv->lock);
|
||||
|
||||
if (old)
|
||||
g_object_unref (old);
|
||||
g_free (old);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue