filter/source/xsltfilter/LibXSLTTransformer.cxx | 2 +- vcl/source/gdi/virdev.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
New commits: commit 3a6424888642d716234bcac520996f01ace62a22 Author: Caolán McNamara <[email protected]> AuthorDate: Thu Jul 18 11:20:07 2019 +0100 Commit: Caolán McNamara <[email protected]> CommitDate: Fri Jul 19 09:41:24 2019 +0200 cid#1448509 Unchecked return value from library Change-Id: Idda609ca8f1cad0e2a703b0b6ba3b0a2b661874b Reviewed-on: https://gerrit.libreoffice.org/75901 Tested-by: Jenkins Reviewed-by: Caolán McNamara <[email protected]> Tested-by: Caolán McNamara <[email protected]> diff --git a/filter/source/xsltfilter/LibXSLTTransformer.cxx b/filter/source/xsltfilter/LibXSLTTransformer.cxx index c2b9e9dd65fb..1f4eed7ad1f0 100644 --- a/filter/source/xsltfilter/LibXSLTTransformer.cxx +++ b/filter/source/xsltfilter/LibXSLTTransformer.cxx @@ -316,7 +316,7 @@ namespace XSLT outBuf->writecallback = &ParserOutputBufferCallback::on_write; outBuf->closecallback = &ParserOutputBufferCallback::on_close; xsltSaveResultTo(outBuf, result, styleSheet); - xmlOutputBufferClose(outBuf); + (void)xmlOutputBufferClose(outBuf); } else { commit a4d7ad970122e0877f895021a83d8692fbd2967c Author: Caolán McNamara <[email protected]> AuthorDate: Thu Jul 18 11:23:52 2019 +0100 Commit: Caolán McNamara <[email protected]> CommitDate: Fri Jul 19 09:41:11 2019 +0200 cid#1451641 Unchecked return value Change-Id: Ifc9a6d3e268af27515cdf3b2b1da471368d50e87 Reviewed-on: https://gerrit.libreoffice.org/75904 Tested-by: Jenkins Reviewed-by: Caolán McNamara <[email protected]> Tested-by: Caolán McNamara <[email protected]> diff --git a/vcl/source/gdi/virdev.cxx b/vcl/source/gdi/virdev.cxx index ed6123ce2055..196ed44871cb 100644 --- a/vcl/source/gdi/virdev.cxx +++ b/vcl/source/gdi/virdev.cxx @@ -479,7 +479,7 @@ void VirtualDevice::ImplSetReferenceDevice( RefDevMode i_eRefDevMode, sal_Int32 mxFontCache.reset(); // get font list with scalable fonts only - AcquireGraphics(); + (void)AcquireGraphics(); mxFontCollection = pSVData->maGDIData.mxScreenFontList->Clone(); // prepare to use new font lists _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
