range: add g_return_if check

This commit is contained in:
Wim Taymans 2012-11-21 12:12:28 +01:00
parent 7af386fdaf
commit 0bf50cd3d8

View file

@ -399,5 +399,7 @@ gst_rtsp_range_to_string (const GstRTSPTimeRange * range)
void
gst_rtsp_range_free (GstRTSPTimeRange * range)
{
g_return_if_fail (range != NULL);
g_free (range);
}