# HG changeset patch # User rbultje # Date 1264104071 0 # Node ID 3fd13093ca7c6b7dcf322b8354ea6974a0a32cc0 # Parent c1843162bd3dd25a5e8f156fc1bff3090c8544c5 Change on rtsp_send_cmd() to the _async() version since we don't use the response anyway. diff -r c1843162bd3d -r 3fd13093ca7c rtsp.c --- a/rtsp.c Thu Jan 21 19:50:40 2010 +0000 +++ b/rtsp.c Thu Jan 21 20:01:11 2010 +0000 @@ -1726,7 +1726,7 @@ snprintf(cmd, sizeof(cmd), "TEARDOWN %s RTSP/1.0\r\n", s->filename); - rtsp_send_cmd(s, cmd, reply, NULL); + rtsp_send_cmd_async(s, cmd, reply, NULL); rtsp_close_streams(rt); url_close(rt->rtsp_hd);