projects
/
platform
/
upstream
/
gst-plugins-good.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ef29a59
)
rtspsrc: fix missing null-terminator in protocols array
author
René Stadler
<rene.stadler@nokia.com>
Tue, 28 Sep 2010 13:21:48 +0000
(16:21 +0300)
committer
René 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
patch
|
blob
|
history
diff --git
a/gst/rtsp/gstrtspsrc.c
b/gst/rtsp/gstrtspsrc.c
index 4e1777bdc0526512d023f7b0619e046d273ea08f..52ec272c61c6e84a45bd154059cb134f1ccef693 100644
(file)
--- a/
gst/rtsp/gstrtspsrc.c
+++ b/
gst/rtsp/gstrtspsrc.c
@@
-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;
}