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

coverity#705003 Dereference after null check

Change-Id: I8dff9d0c2257e4fd9f9a5676e30698da08484134
üst 66c89300
......@@ -2815,6 +2815,8 @@ void WW8TabDesc::EndMiserableHackForUnsupportedDirection(short nWwCol)
bool WW8TabDesc::SetPamInCell(short nWwCol, bool bPam)
{
OSL_ENSURE( pActBand, "pActBand ist 0" );
if (!pActBand)
return false;
sal_uInt16 nCol = pActBand->transCell(nWwCol);
......
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