[vlc-devel] commit: Missing initializer ( Rémi Denis-Courmont )

git version control git at videolan.org
Wed Feb 17 17:59:04 CET 2010


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Wed Feb 17 18:58:56 2010 +0200| [5c89f557dd29eb3d2c268edbd29ec718de989e12] | committer: Rémi Denis-Courmont 

Missing initializer

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5c89f557dd29eb3d2c268edbd29ec718de989e12
---

 modules/stream_out/rtp.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/modules/stream_out/rtp.c b/modules/stream_out/rtp.c
index 266bab2..4937686 100644
--- a/modules/stream_out/rtp.c
+++ b/modules/stream_out/rtp.c
@@ -725,7 +725,7 @@ out:
 char *SDPGenerate( sout_stream_t *p_stream, const char *rtsp_url )
 {
     sout_stream_sys_t *p_sys = p_stream->p_sys;
-    char *psz_sdp;
+    char *psz_sdp = NULL;
     struct sockaddr_storage dst;
     socklen_t dstlen;
     int i;




More information about the vlc-devel mailing list