mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
rtspsrc: fix missing null-terminator in protocols array
Fixes random crash regression from commit ae84ae.
This commit is contained in:
parent
ef29a59903
commit
0cfe24d132
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue