Kaydet (Commit) 66d5e422 authored tarafından Mike Kaganski's avatar Mike Kaganski

tdf#120703 PVS: Check potentially null pointer before use

V595 The 'pHdl' pointer was utilized before it was verified against nullptr.
     Check lines: 192, 197.

Change-Id: I52e1d1eadaded8616b8a27e0fcfaf6d1e6baa03e
Reviewed-on: https://gerrit.libreoffice.org/71455
Tested-by: Jenkins
Reviewed-by: 's avatarMike Kaganski <mike.kaganski@collabora.com>
üst 364b59dc
......@@ -182,7 +182,7 @@ void ScCellShell::Execute( SfxRequest& rReq )
GetViewData()->GetTabNo(),
aStr );
}
else
else if (pHdl)
{
SC_MOD()->SetInputMode(SC_INPUT_TABLE);
......
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