Change an obviously wrong return FALSE to return NULL;

(cherry picked from commit 56d4fb48030db3ae45f3f0e60b29b36f3134322b)
This commit is contained in:
Alessandro Decina 2008-10-25 23:36:16 +02:00 committed by Wim Taymans
parent a8400faeab
commit 51775b87d1

View file

@ -144,7 +144,7 @@ gst_rtsp_session_get_media (GstRTSPSession *sess, GstRTSPMedia *media)
no_media:
{
gst_rtsp_session_free_media (result);
return FALSE;
return NULL;
}
}