rtspconnection: Fix warning about using unitialized value.
authorEdward Hervey <bilboed@bilboed.com>
Sat, 28 Feb 2009 12:11:59 +0000 (13:11 +0100)
committerEdward Hervey <bilboed@bilboed.com>
Sat, 28 Feb 2009 12:11:59 +0000 (13:11 +0100)
gst-libs/gst/rtsp/gstrtspconnection.c

index ac28d14..d45567c 100644 (file)
@@ -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;