filter/source/msfilter/escherex.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 6fe3eb31304923680d04ae069621eabe84cddc24
Author:     Caolán McNamara <caol...@redhat.com>
AuthorDate: Thu Jul 18 10:24:09 2019 +0100
Commit:     Caolán McNamara <caol...@redhat.com>
CommitDate: Thu Jul 18 16:28:42 2019 +0200

    cid#1448237 Unchecked return value
    
    Change-Id: Ic53196270ececf407d75c2f76998253adf396c64
    Reviewed-on: https://gerrit.libreoffice.org/75848
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caol...@redhat.com>
    Tested-by: Caolán McNamara <caol...@redhat.com>

diff --git a/filter/source/msfilter/escherex.cxx 
b/filter/source/msfilter/escherex.cxx
index 2763565b0281..1324a23979cd 100644
--- a/filter/source/msfilter/escherex.cxx
+++ b/filter/source/msfilter/escherex.cxx
@@ -1576,7 +1576,7 @@ bool 
EscherPropertyContainer::CreateGraphicProperties(const uno::Reference<beans
             // actually supported by mso.
             INetURLObject   aTmp( aGraphicUrl );
             GraphicDescriptor aDescriptor(aTmp);
-            aDescriptor.Detect();
+            (void)aDescriptor.Detect();
             const GraphicFileFormat nFormat = aDescriptor.GetFileFormat();
 
             // can MSO handle it?
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to