diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-11-12 12:23:08 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-11-12 12:23:08 +0000 |
commit | 1ef8ab3ed7930cec2569ee576a409c7a6bbb42e9 (patch) | |
tree | 2b14826ea95b2f3be6a1fafe72c13b486c97e23e /connectivity | |
parent | 20043e3fa26dfe7574bc5e985455c7042e0e53f9 (diff) |
coverity#1394295 Unchecked return value
Change-Id: Ie4edbe91ab4f9b9910fc895e47ea8b9fdfc00b7e
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/firebird/PreparedStatement.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/connectivity/source/drivers/firebird/PreparedStatement.cxx b/connectivity/source/drivers/firebird/PreparedStatement.cxx index 6ff2994a4719..28851935dd29 100644 --- a/connectivity/source/drivers/firebird/PreparedStatement.cxx +++ b/connectivity/source/drivers/firebird/PreparedStatement.cxx @@ -330,7 +330,7 @@ sal_Int64 toNumericWithoutDecimalPlace(const OUString& sSource) OUString sNumber(sSource); // cut off leading 0 eventually ( eg. 0.567 -> .567) - sSource.startsWith("0", &sNumber); + (void)sSource.startsWith("0", &sNumber); sal_Int32 nDotIndex = sNumber.indexOf((sal_Unicode)'.'); |