diff options
author | Caolán McNamara <caolanm@redhat.com> | 2021-07-26 13:38:38 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-07-26 19:28:07 +0200 |
commit | 3378c34287c6f02a8f75cb3a6d301cb27ac188e3 (patch) | |
tree | 0ef7dbe82459f902e8c4378a93a88430b4af7ef6 | |
parent | 1441e001938d6a0b19743ef8170980238b88d350 (diff) |
cid#1489523 silence bogus Out-of-bounds access
drop comment referring to no longer used return value
Change-Id: I3eca1294edc09fc626a8d62ff031547c2a1a5a72
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119502
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r-- | vcl/unx/generic/app/saldisp.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/unx/generic/app/saldisp.cxx b/vcl/unx/generic/app/saldisp.cxx index f7135eeada0a..33259eb2da49 100644 --- a/vcl/unx/generic/app/saldisp.cxx +++ b/vcl/unx/generic/app/saldisp.cxx @@ -1895,7 +1895,7 @@ void SalX11Display::Yield() XNextEvent( pDisp_, &aEvent ); - // FIXME: under-convinced by Dispatch boolean return value vs. salframe. + // coverity[overrun-buffer-val : FALSE] - coverity has problems with uno::Sequence Dispatch( &aEvent ); #ifdef DBG_UTIL |