Kaydet (Commit) d5462244 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#705015 Explicit null dereferenced

Change-Id: Idac9493e152f639066cf497be897b8a489c39f6c
üst 752b8ebb
...@@ -183,9 +183,13 @@ SfxTabPage* SwFldEditDlg::CreatePage(sal_uInt16 nGroup) ...@@ -183,9 +183,13 @@ SfxTabPage* SwFldEditDlg::CreatePage(sal_uInt16 nGroup)
} }
static_cast<SwFldPage*>(pTabPage)->SetWrtShell(pSh); assert(pTabPage);
SetTabPage(pTabPage); if (pTabPage)
{
static_cast<SwFldPage*>(pTabPage)->SetWrtShell(pSh);
SetTabPage(pTabPage);
}
return pTabPage; return pTabPage;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment