[Libreoffice-commits] core.git: comphelper/source
Thorsten Behrens
Thorsten.Behrens at CIB.de
Thu Oct 20 22:55:59 UTC 2016
comphelper/source/misc/backupfilehelper.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit ff84b8a2429fb7bd2271b690f3b2d83bb918c23e
Author: Thorsten Behrens <Thorsten.Behrens at 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())
More information about the Libreoffice-commits
mailing list