mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
rtspconnection: Fix warning about using unitialized value.
This commit is contained in:
parent
6f73427aa6
commit
ed013753c0
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue