From ed013753c055931d2295400df7f7e7741dc1c94d Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Sat, 28 Feb 2009 13:11:59 +0100 Subject: [PATCH] rtspconnection: Fix warning about using unitialized value. --- gst-libs/gst/rtsp/gstrtspconnection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst-libs/gst/rtsp/gstrtspconnection.c b/gst-libs/gst/rtsp/gstrtspconnection.c index ac28d14..d45567c 100644 --- a/gst-libs/gst/rtsp/gstrtspconnection.c +++ b/gst-libs/gst/rtsp/gstrtspconnection.c @@ -277,7 +277,7 @@ gst_rtsp_connection_accept (gint sock, GstRTSPConnection ** conn) { int fd; unsigned int address_len; - GstRTSPConnection *newconn; + GstRTSPConnection *newconn = NULL; struct sockaddr_in address; GstRTSPUrl *url; -- 2.7.4