fpicker/source/office/OfficeFilePicker.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b38b04702090504134d4433e36001079c1b027ae
Author:     Caolán McNamara <caol...@redhat.com>
AuthorDate: Sat Aug 20 10:48:56 2022 +0100
Commit:     Caolán McNamara <caol...@redhat.com>
CommitDate: Sat Aug 20 13:30:26 2022 +0200

    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 <caol...@redhat.com>

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 );
 

Reply via email to