comphelper/source/misc/backupfilehelper.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ff84b8a2429fb7bd2271b690f3b2d83bb918c23e
Author: Thorsten Behrens <thorsten.behr...@cib.de>
Date:   Fri Oct 21 00:43:05 2016 +0200

    coverity#1374089: Unchecked return value
    
    Change-Id: Ied4e80db512000471b5aa215beeef1277121fe12

diff --git a/comphelper/source/misc/backupfilehelper.cxx 
b/comphelper/source/misc/backupfilehelper.cxx
index 50b9cac..e654c33 100644
--- a/comphelper/source/misc/backupfilehelper.cxx
+++ b/comphelper/source/misc/backupfilehelper.cxx
@@ -1691,7 +1691,7 @@ namespace comphelper
                 }
 
                 maInitialBaseURL = conf.copy(nStart, nEnd - nStart);
-                maInitialBaseURL.startsWith("!", &maInitialBaseURL);
+                (void)maInitialBaseURL.startsWith("!", &maInitialBaseURL);
             }
 
             if (!maInitialBaseURL.isEmpty())
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to