diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-10-07 09:49:31 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-10-07 16:31:46 +0200 |
commit | 885e6064f05b6e8360cc020872d4696afeb15305 (patch) | |
tree | 1b0815c3019f6da5b7cded4ed87c97a17ba3afb7 /sal | |
parent | 9f68c71116661813efc19223a0ead921e3a38e02 (diff) |
cid#1448512 silence bogus Out-of-bounds access
Change-Id: I6febe3d48fc9018b373a940d88d2afeefad7502c
Reviewed-on: https://gerrit.libreoffice.org/80355
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sal')
-rw-r--r-- | sal/osl/unx/nlsupport.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sal/osl/unx/nlsupport.cxx b/sal/osl/unx/nlsupport.cxx index 9be260b6dd03..76c4cedb2000 100644 --- a/sal/osl/unx/nlsupport.cxx +++ b/sal/osl/unx/nlsupport.cxx @@ -639,6 +639,7 @@ void imp_getProcessLocale( rtl_Locale ** ppLocale ) } } } + // coverity[overrun-buffer-arg: FALSE] - coverity gets this very wrong *ppLocale = parse_locale(locale); } |