summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww8
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2016-08-19 09:50:47 +0100
committerCaolán McNamara <caolanm@redhat.com>2016-08-19 13:00:44 +0100
commitc0b4aa8b7d0851208c5b6df00e1feab501aaf784 (patch)
treece413ac237d7e1fa0b1b5506d3ce750265b6bbd2 /sw/source/filter/ww8
parentced06472f7b10bc301c66ebf1dd98d5dff8a7e6c (diff)
coverity#1371116 Unchecked return value
Change-Id: I7d07b3e1b1eaaeb60adab2b957f6831794ee2eb4
Diffstat (limited to 'sw/source/filter/ww8')
-rw-r--r--sw/source/filter/ww8/rtfsdrexport.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/ww8/rtfsdrexport.cxx b/sw/source/filter/ww8/rtfsdrexport.cxx
index 385593585131..0786f7713339 100644
--- a/sw/source/filter/ww8/rtfsdrexport.cxx
+++ b/sw/source/filter/ww8/rtfsdrexport.cxx
@@ -469,7 +469,7 @@ void RtfSdrExport::impl_writeGraphic()
// Export it to a stream.
SvMemoryStream aStream;
- GraphicConverter::Export(aStream, aGraphic, ConvertDataFormat::PNG);
+ (void)GraphicConverter::Export(aStream, aGraphic, ConvertDataFormat::PNG);
aStream.Seek(STREAM_SEEK_TO_END);
sal_uInt32 nSize = aStream.Tell();
const sal_uInt8* pGraphicAry = static_cast<sal_uInt8 const*>(aStream.GetData());