Kaydet (Commit) 2e252aaf authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#738941 Uninitialized pointer field

Change-Id: Id7d9e1700c513ffe72ffc4fa8d369d07370a4db9
üst 03108f65
......@@ -124,10 +124,16 @@ class ICEConnectionObserver
public:
osl::Mutex m_ICEMutex;
ICEConnectionObserver():
m_pFilehandles(NULL), m_nConnections(0), m_pConnections(NULL),
m_ICEThread(NULL)
{ m_nWakeupFiles[0] = m_nWakeupFiles[1] = 0; }
ICEConnectionObserver()
: m_pFilehandles(NULL)
, m_nConnections(0)
, m_pConnections(NULL)
, m_ICEThread(NULL)
, m_origIOErrorHandler(NULL)
, m_origErrorHandler(NULL)
{
m_nWakeupFiles[0] = m_nWakeupFiles[1] = 0;
}
void activate();
void deactivate();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment