Kaydet (Commit) 8477ccec authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#707740 Uninitialized pointer field

Change-Id: I2e948197f5299b93e22fdf3590494fcf72be3fdb
üst 82a33b84
......@@ -112,11 +112,12 @@ namespace
// class OConnectionLine
OConnectionLine::OConnectionLine( OTableConnection* _pConn, OConnectionLineDataRef _pLineData )
: m_pTabConn( _pConn )
,m_pData( _pLineData )
, m_pData( _pLineData )
{
}
OConnectionLine::OConnectionLine( const OConnectionLine& _rLine )
: m_pTabConn(NULL)
{
m_pData = new OConnectionLineData( *_rLine.GetData() );
*this = _rLine;
......
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