summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-07-18 10:08:24 +0100
committerCaolán McNamara <caolanm@redhat.com>2019-07-18 14:46:09 +0200
commit3f4f42ed9beeb38092de044ccde1828b32a787c2 (patch)
treef789619daed4c7f3f12c316ae083387cc0909e44 /filter
parente8bae67b3dbcc90ace8264b6b1aefaf0ce459aba (diff)
cid#703960 Unchecked return value
Change-Id: I679e9e91261d468f2f2ee08f840ac3043d87817c Reviewed-on: https://gerrit.libreoffice.org/75839 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'filter')
-rw-r--r--filter/source/xsltdialog/xmlfilterjar.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/filter/source/xsltdialog/xmlfilterjar.cxx b/filter/source/xsltdialog/xmlfilterjar.cxx
index de8b2078107c..d388410ad083 100644
--- a/filter/source/xsltdialog/xmlfilterjar.cxx
+++ b/filter/source/xsltdialog/xmlfilterjar.cxx
@@ -201,7 +201,7 @@ bool XMLFilterJarHelper::savePackage( const OUString& rPackageURL, const std::ve
{
osl::File aOutputFile( aTempFileURL );
- /* osl::File::RC rc = */ aOutputFile.open( osl_File_OpenFlag_Write );
+ (void)aOutputFile.open(osl_File_OpenFlag_Write);
Reference< XOutputStream > xOS( new OSLOutputStreamWrapper( aOutputFile ) );
TypeDetectionExporter aExporter( mxContext );