Kaydet (Commit) 7192cb0f authored tarafından Miklos Vajna's avatar Miklos Vajna

coverity#1308430 pSh may be 0 here

Change-Id: I2aaee946bdc5a22cf5a83e1e50714556260280f3
üst b55166d2
...@@ -1026,7 +1026,7 @@ bool SwLayAction::IsShortCut( SwPageFrm *&prPage ) ...@@ -1026,7 +1026,7 @@ bool SwLayAction::IsShortCut( SwPageFrm *&prPage )
} }
} }
else else
FormatLayout( pSh->GetOut(), prPage ); FormatLayout( pSh ? pSh->GetOut() : 0, prPage );
if ( IsAgain() ) if ( IsAgain() )
return false; return false;
} }
......
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