mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 07:58:51 +00:00
server: ensure the watch has a ref to the server
This commit is contained in:
parent
3315031bf6
commit
94c9999715
1 changed files with 2 additions and 1 deletions
|
@ -775,6 +775,7 @@ static void
|
||||||
watch_destroyed (GstRTSPServer * server)
|
watch_destroyed (GstRTSPServer * server)
|
||||||
{
|
{
|
||||||
GST_DEBUG_OBJECT (server, "source destroyed");
|
GST_DEBUG_OBJECT (server, "source destroyed");
|
||||||
|
g_object_unref (server);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -805,7 +806,7 @@ gst_rtsp_server_create_watch (GstRTSPServer * server)
|
||||||
|
|
||||||
/* configure the callback */
|
/* configure the callback */
|
||||||
g_source_set_callback (source,
|
g_source_set_callback (source,
|
||||||
(GSourceFunc) gst_rtsp_server_io_func, server,
|
(GSourceFunc) gst_rtsp_server_io_func, g_object_ref (server),
|
||||||
(GDestroyNotify) watch_destroyed);
|
(GDestroyNotify) watch_destroyed);
|
||||||
|
|
||||||
return source;
|
return source;
|
||||||
|
|
Loading…
Reference in a new issue