diff options
author | Thorsten Behrens <Thorsten.Behrens@CIB.de> | 2016-10-21 00:43:05 +0200 |
---|---|---|
committer | Thorsten Behrens <Thorsten.Behrens@CIB.de> | 2016-10-21 00:54:46 +0200 |
commit | ff84b8a2429fb7bd2271b690f3b2d83bb918c23e (patch) | |
tree | 6e98e972f6169aeb3c3948dd1e3bca39c316b6b6 | |
parent | 580cddc6260dedfcc48f291f424e65525c0428b1 (diff) |
coverity#1374089: Unchecked return value
Change-Id: Ied4e80db512000471b5aa215beeef1277121fe12
-rw-r--r-- | comphelper/source/misc/backupfilehelper.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/comphelper/source/misc/backupfilehelper.cxx b/comphelper/source/misc/backupfilehelper.cxx index 50b9cace3bf1..e654c3374345 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()) |