GNOME Bugzilla – Bug 685220
rtsp-client: do not destroy the rtsp watch in the rtsp watch functions
Last modified: 2014-02-25 22:28:19 UTC
Created attachment 225496 [details] [review] rtsp-client.c: do not destroy rtsp watch Currently, the client watch is destroyed in message_received (while handling TEARDOWN request => close_connection()) and tunnel_complete(). However, we are still in dispatch(). The rtsp watch is automatically destroyed after the rtsp watch function closed() has been called.
commit 870b8db2791663b081b625d3b78a80c8fda15f42 Author: Patricia Muscalu <patricia@axis.com> Date: Mon Oct 1 16:13:50 2012 +0200 rtsp-client: do not destroy the rtsp watch Don't destroy the client watch while dispatching. The rtsp watch is automatically destroyed after the rtsp watch function closed() has been called. Fixes https://bugzilla.gnome.org/show_bug.cgi?id=685220