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
commit347a80976ef3f0f41077be80a8f8c42af968be7a (patch)
treec64362f229c5e6d1cb3dc3dfba96132e4500748c
parent15c5a3c56e70c96e5b91fa5a6d9fadb42d87b9ef (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 864f4caaf..e4f0c5f48 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();
}