diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2013-03-30 19:42:48 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2013-03-30 19:44:12 +0100 |
commit | cab7f6476f7d0f17bf2f1400bf93fb1b7fbd1625 (patch) | |
tree | 444a407e633196b652af0a32407f806f6ab15c6f /sfx2 | |
parent | 5813cb01c76404a61e3c8082630b4cfafa91de7d (diff) |
coverity#441020 Dereference after null check
Change-Id: I39c301a98854d19e849a9e06ffac0657408456fe
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/dialog/templdlg.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/dialog/templdlg.cxx b/sfx2/source/dialog/templdlg.cxx index 1b98850a5936..65c783c09df2 100644 --- a/sfx2/source/dialog/templdlg.cxx +++ b/sfx2/source/dialog/templdlg.cxx @@ -2674,7 +2674,7 @@ void SfxCommonTemplateDialog_Impl::UpdateFamily_Impl() if ( pOldStyleSheetPool ) EndListening(*pOldStyleSheetPool); if ( pStyleSheetPool ) - StartListening(*pOldStyleSheetPool); + StartListening(*pStyleSheetPool); } bWaterDisabled = sal_False; |