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

coverity#735843 Dereference after null check

Change-Id: I67909a2bc1ba411b5809a83be72716045034af19
üst 4c69b0c0
......@@ -1923,7 +1923,7 @@ void SAL_CALL SdXImpressDocument::render( sal_Int32 nRenderer, const uno::Any& r
pPV, pPDFExtOutDevData );
// background color for outliner :o
SdPage* pPage = (SdPage*)pPV->GetPage();
SdPage* pPage = pPV ? (SdPage*)pPV->GetPage() : NULL;
if( pPage )
{
SdrOutliner& rOutl = mpDoc->GetDrawOutliner( NULL );
......
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