rtspconnection: Fix warning about using unitialized value.

This commit is contained in:
Edward Hervey 2009-02-28 13:11:59 +01:00
parent 6f73427aa6
commit ed013753c0

View 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;