diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-02-16 16:29:26 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-02-17 12:21:36 +0000 |
commit | 13de41eaaf5291199d1344092c1077e651da3448 (patch) | |
tree | bbb56d701680bdd2ea1de788b7005871ef3e6802 | |
parent | 8fd5b7c79dc0bc045d012cf15d00fc73858c3742 (diff) |
WaE: uninitialized pCell
-rw-r--r-- | lotuswordpro/source/filter/lwprowlayout.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/lwprowlayout.cxx b/lotuswordpro/source/filter/lwprowlayout.cxx index 219f3582920b..f21114ca4c73 100644 --- a/lotuswordpro/source/filter/lwprowlayout.cxx +++ b/lotuswordpro/source/filter/lwprowlayout.cxx @@ -366,7 +366,7 @@ void LwpRowLayout::ConvertCommonRow(XFTable* pXFTable,sal_uInt8 nStartCol,sal_uI XFRow* pRow = new XFRow; pRow->SetStyleName(m_StyleName); - XFCell * pCell; + XFCell * pCell = NULL; LwpTableLayout* pTableLayout = GetParentTableLayout(); LwpTable* pTable = pTableLayout->GetTable(); sal_uInt8 nCellStartCol,nCellEndCol; |