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

coverity#704764 Dereference after null check

Change-Id: I93ae20005c3d4dbe0b85a4ae79eba683c7355c88
üst eef3f4ce
...@@ -970,7 +970,7 @@ bool SlideshowImpl::startShow( PresentationSettingsEx* pPresSettings ) ...@@ -970,7 +970,7 @@ bool SlideshowImpl::startShow( PresentationSettingsEx* pPresSettings )
} }
else else
{ {
if( pStartPage->GetPageKind() != PK_STANDARD ) if( !pStartPage || pStartPage->GetPageKind() != PK_STANDARD )
{ {
bStartWithActualSlide = false; bStartWithActualSlide = 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