diff options
author | Caolán McNamara <caolanm@redhat.com> | 2022-08-20 10:48:56 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2022-08-20 13:30:26 +0200 |
commit | b38b04702090504134d4433e36001079c1b027ae (patch) | |
tree | 565332cf3d49ec8988dcf91f4b57f21931ed5fab /fpicker | |
parent | b30c9626cbaab9436df776cc183770ac71c3f387 (diff) |
cid#1500521 silence Dereference before null check
Change-Id: Ia17524dd7bf9a56cad0a1358fa2f076b9e1776c9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138577
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'fpicker')
-rw-r--r-- | fpicker/source/office/OfficeFilePicker.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpicker/source/office/OfficeFilePicker.cxx b/fpicker/source/office/OfficeFilePicker.cxx index 7410e0c96faa..6d84f92af512 100644 --- a/fpicker/source/office/OfficeFilePicker.cxx +++ b/fpicker/source/office/OfficeFilePicker.cxx @@ -425,7 +425,7 @@ sal_Int16 SvtFilePicker::implExecutePicker( ) // now we are ready to execute the dialog sal_Int16 nRet = m_xDlg->run(); - // the execution of the dialog yields, so it is possible the at this point the window or the dialog is closed + // coverity[check_after_deref] - the execution of the dialog yields, so it is possible the at this point the window or the dialog is closed if (m_xDlg) m_xDlg->SetFileCallback( nullptr ); |