diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-08-07 16:08:27 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-08-07 18:00:51 +0100 |
commit | 8acf970d8a55271cd1565ee7b33ab26c88b70280 (patch) | |
tree | bfb2ba548ff35712f4fa62f45a63ea42361dee6d /sw | |
parent | 4e77d6251ebf12f2f9a24d64c0285cb3fc6aad42 (diff) |
coverity#705003 Dereference after null check
Change-Id: I3841f9d067d006810d99d04cd874bbb26a0812bb
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/filter/ww8/ww8par2.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/ww8/ww8par2.cxx b/sw/source/filter/ww8/ww8par2.cxx index 3b67391c0583..e61f569e7382 100644 --- a/sw/source/filter/ww8/ww8par2.cxx +++ b/sw/source/filter/ww8/ww8par2.cxx @@ -3192,7 +3192,7 @@ void WW8TabDesc::TableCellEnd() SetPamInCell(nAktCol, true); // finish Annotated Level Numbering ? - if (pIo->bAnl && !pIo->bAktAND_fNumberAcross) + if (pIo->bAnl && !pIo->bAktAND_fNumberAcross && pActBand) pIo->StopAllAnl(IsValidCell(nAktCol)); } |