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

coverity#738750 Uninitialized pointer field

Change-Id: I619f130184eae670ba921843075ab199e952765c
üst 623a3455
...@@ -417,10 +417,14 @@ void LwpSuperTableLayout::RegisterFrameStyle() ...@@ -417,10 +417,14 @@ void LwpSuperTableLayout::RegisterFrameStyle()
} }
LwpTableLayout::LwpTableLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm) LwpTableLayout::LwpTableLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm)
: LwpLayout(objHdr, pStrm), m_nRows(0), m_nCols(0), m_pXFTable(NULL) : LwpLayout(objHdr, pStrm)
, m_nRows(0)
, m_nCols(0)
, m_pDefaultCellLayout(NULL)
, m_pColumns(NULL)
, m_pXFTable(NULL)
{ {
m_CellsMap.clear(); m_CellsMap.clear();
m_pColumns = NULL;
} }
LwpTableLayout::~LwpTableLayout() LwpTableLayout::~LwpTableLayout()
...@@ -433,6 +437,7 @@ LwpTableLayout::~LwpTableLayout() ...@@ -433,6 +437,7 @@ LwpTableLayout::~LwpTableLayout()
m_pColumns = NULL; m_pColumns = NULL;
} }
} }
/** /**
* @short Get neighbour cell by specifying ROW+COL * @short Get neighbour cell by specifying ROW+COL
* @param nRow * @param nRow
......
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