summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@novell.com>2011-05-20 12:49:55 +0300
committerCédric Bosdonnat <cedric.bosdonnat.ooo@free.fr>2011-06-01 09:31:21 +0200
commit18054e19eba750f8b56bb7c6c463f39444716a4d (patch)
tree395bf5d160bea1e2eb1fdbf9ec420c2b0db51bd7
parent67081d291e9e9d2611b684dd16be3c08661ae0c4 (diff)
Typo
Signed-off-by: Cédric Bosdonnat <cedric.bosdonnat.ooo@free.fr>
-rw-r--r--sd/source/filter/eppt/pptx-epptbase.cxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/sd/source/filter/eppt/pptx-epptbase.cxx b/sd/source/filter/eppt/pptx-epptbase.cxx
index 864f4caaf4b9..e4f0c5f48bae 100644
--- a/sd/source/filter/eppt/pptx-epptbase.cxx
+++ b/sd/source/filter/eppt/pptx-epptbase.cxx
@@ -165,7 +165,11 @@ PPTWriterBase::PPTWriterBase( const Reference< XModel > & rXModel,
PPTWriterBase::~PPTWriterBase()
{
- if ( mbStatusIndicator && mXStatusIndicator.is() ))
+ // Possibly unnecessary sanity check for mXStatusIndicator.is().
+ // In 3.3 we had a bug report of a crash where it was null,
+ // https://bugzilla.novell.com/show_bug.cgi?id=694119 (non-public,
+ // bug report, sorry).
+ if ( mbStatusIndicator && mXStatusIndicator.is() )
mXStatusIndicator->end();
}