rtspsrc: fix missing null-terminator in protocols array
authorRené Stadler <rene.stadler@nokia.com>
Tue, 28 Sep 2010 13:21:48 +0000 (16:21 +0300)
committerRené Stadler <rene.stadler@nokia.com>
Tue, 28 Sep 2010 13:21:48 +0000 (16:21 +0300)
Fixes random crash regression from commit ae84ae.

gst/rtsp/gstrtspsrc.c

index 4e1777bdc0526512d023f7b0619e046d273ea08f..52ec272c61c6e84a45bd154059cb134f1ccef693 100644 (file)
@@ -6167,7 +6167,7 @@ static gchar **
 gst_rtspsrc_uri_get_protocols (void)
 {
   static const gchar *protocols[] =
-      { "rtsp", "rtspu", "rtspt", "rtsph", "rtsp-sdp" };
+      { "rtsp", "rtspu", "rtspt", "rtsph", "rtsp-sdp", NULL };
 
   return (gchar **) protocols;
 }