Skip to content

Commit

Permalink
initialize uninitialized members
Browse files Browse the repository at this point in the history
  • Loading branch information
mpromonet committed Mar 23, 2024
1 parent 97b4a45 commit 4aa69b8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/rtspconnectionclient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@ int getHttpTunnelPort(int rtptransport, const char* rtspURL)

RTSPConnection::RTSPClientConnection::RTSPClientConnection(RTSPConnection& connection, Environment& env, Callback* callback, const char* rtspURL, int timeout, int rtptransport, int verbosityLevel)
: RTSPClientConstrutor(env, rtspURL, verbosityLevel, NULL, getHttpTunnelPort(rtptransport, rtspURL))
, m_ConnectionTimeoutTask(NULL)
, m_DataArrivalTimeoutTask(NULL)
, m_connection(connection)
, m_timeout(timeout)
, m_rtptransport(rtptransport)
Expand Down

0 comments on commit 4aa69b8

Please sign in to comment.