diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/source/backends/localebe/localebackend.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
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, {}}; |