diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-02-28 08:15:52 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-02-28 10:53:12 +0100 |
commit | b65335564647705092d58dc0e9de92fb01c6262a (patch) | |
tree | e6671aaaa311081e98ba1eab10e0fbdcf212774a /cui | |
parent | f4bb6d7cb5751c22bcba99ffe926d7b645902ae2 (diff) |
coverity#705637: fix memory leak and add documentation
Change-Id: If06ef8c78a7d3910be3f3d46dca090a4568b5fe7
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/tabpages/chardlg.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cui/source/tabpages/chardlg.cxx b/cui/source/tabpages/chardlg.cxx index 7048be1bf667..b7f0e7f701b4 100644 --- a/cui/source/tabpages/chardlg.cxx +++ b/cui/source/tabpages/chardlg.cxx @@ -1359,7 +1359,7 @@ void SvxCharEffectsPage::Initialize() m_pFontColorLB->SetUpdateMode( sal_False ); { - SfxPoolItem* pDummy; + SfxPoolItem* pDummy = NULL; SfxViewFrame* pFrame = SfxViewFrame::GetFirst( pDocSh ); if ( !pFrame || SFX_ITEM_DEFAULT > pFrame->GetBindings().QueryState( SID_ATTR_AUTO_COLOR_INVALID, pDummy ) ) @@ -1368,6 +1368,7 @@ void SvxCharEffectsPage::Initialize() m_pOverlineColorLB->InsertAutomaticEntryColor( Color( COL_AUTO ) ); m_pFontColorLB->InsertAutomaticEntryColor( Color( COL_AUTO ) ); } + delete pDummy; } for ( long i = 0; i < pColorTable->Count(); i++ ) { |