From 6e07c9885502fe0572761499e790ebf7aedb707d Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Fri, 7 Mar 2014 11:44:30 +0000 Subject: coverity#735844 Dereference after null check Change-Id: I444f545718f0d7b3e1612a1b17b810f93f032bcb --- sd/source/ui/unoidl/unomodel.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sd/source/ui/unoidl') diff --git a/sd/source/ui/unoidl/unomodel.cxx b/sd/source/ui/unoidl/unomodel.cxx index 1206c870d0cb..fb155b09021c 100644 --- a/sd/source/ui/unoidl/unomodel.cxx +++ b/sd/source/ui/unoidl/unomodel.cxx @@ -1949,7 +1949,7 @@ void SAL_CALL SdXImpressDocument::render( sal_Int32 nRenderer, const uno::Any& r } pView->SdrPaintView::CompleteRedraw( pOut, aRegion, &aImplRenderPaintProc ); - if ( pPDFExtOutDevData ) + if ( pPDFExtOutDevData && pPage ) { try { -- cgit