From a46e4518e5c3bfd2fc425de928672f4e3df36fd3 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 19 Feb 2014 12:35:36 +0200 Subject: cid#983378 Dereference before null check Change-Id: Iff8cd285d1b6443937f8ff725846b7d0fc4f39c3 --- sc/source/ui/view/output2.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sc/source/ui/view/output2.cxx b/sc/source/ui/view/output2.cxx index ede02cc0e365..5fc4d502df79 100644 --- a/sc/source/ui/view/output2.cxx +++ b/sc/source/ui/view/output2.cxx @@ -5206,7 +5206,7 @@ void ScOutputData::DrawRotated(bool bPixelToLogic) long nAvailWidth = aCellSize.Width(); if (eType==OUTTYPE_WINDOW && eOrient!=SVX_ORIENTATION_STACKED && - pInfo && pInfo->bAutoFilter) + pInfo->bAutoFilter) { // filter drop-down width is now independent from row height if (bPixelToLogic) -- cgit