mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +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;
|
int fd;
|
||||||
unsigned int address_len;
|
unsigned int address_len;
|
||||||
GstRTSPConnection *newconn;
|
GstRTSPConnection *newconn = NULL;
|
||||||
struct sockaddr_in address;
|
struct sockaddr_in address;
|
||||||
GstRTSPUrl *url;
|
GstRTSPUrl *url;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue