[Libreoffice-commits] core.git: shell/source

Stephan Bergmann sbergman at redhat.com
Thu May 11 15:08:12 UTC 2017


 shell/source/backends/localebe/localebackend.cxx |    2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 99c99e3c7546f98b3d21301e6160772ee9f47fc0
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Thu May 11 17:07:32 2017 +0200

    cid#1403658: Try harder to make Coverity Scan happy
    
    Change-Id: I109f95a55875b7795fc366825b3a6bb2e897d676

diff --git a/shell/source/backends/localebe/localebackend.cxx b/shell/source/backends/localebe/localebackend.cxx
index 32ab8e63c2bb..d51571071ab4 100644
--- a/shell/source/backends/localebe/localebackend.cxx
+++ b/shell/source/backends/localebe/localebackend.cxx
@@ -19,6 +19,7 @@
 
 #include <sal/config.h>
 
+#include <cassert>
 #include <limits>
 
 #include "localebackend.hxx"
@@ -194,6 +195,7 @@ static css::beans::Optional<css::uno::Any> ImplGetLocale(char const * category)
             return {false, {}};
         }
     }
+    assert(cp >= locale);
     if (cp - locale > std::numeric_limits<sal_Int32>::max()) {
         SAL_INFO("shell", "locale env var content too long");
         return {false, {}};


More information about the Libreoffice-commits mailing list