shell/source/tools/lngconvex/lngconvex.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit fa7ca0a1c7f899f9df09e96ffe7f7bb3f48c850f
Author:     Caolán McNamara <caol...@redhat.com>
AuthorDate: Thu Jul 18 10:54:59 2019 +0100
Commit:     Caolán McNamara <caol...@redhat.com>
CommitDate: Thu Jul 18 22:46:05 2019 +0200

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

diff --git a/shell/source/tools/lngconvex/lngconvex.cxx 
b/shell/source/tools/lngconvex/lngconvex.cxx
index ff8126285ff6..452e88e29147 100644
--- a/shell/source/tools/lngconvex/lngconvex.cxx
+++ b/shell/source/tools/lngconvex/lngconvex.cxx
@@ -108,7 +108,7 @@ OUString get_absolute_path(
     osl::FileBase::getFileURLFromSystemPath(RelDir, rel_url);
 
     OUString abs_url;
-    osl::FileBase::getAbsoluteFileURL(base_url, rel_url, abs_url);
+    (void)osl::FileBase::getAbsoluteFileURL(base_url, rel_url, abs_url);
 
     OUString abs_sys_path;
     osl::FileBase::getSystemPathFromFileURL(abs_url, abs_sys_path);
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to