diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-05-11 16:14:24 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-05-11 16:14:24 +0200 |
commit | 838994da2af5f069654456dc86c5ffbc4322c37c (patch) | |
tree | 15fe59a3f4624999064c1868c990922a442262b3 /sw | |
parent | e5b404fcde3b177a36ed138e2cc541d6210eb11e (diff) |
Missing break in switch
caused by c2ea2e6ca99395cc6d9ea8f2edf009252dc87957 "coverity#704901 Dereference
after null check"
Change-Id: I7e53493bcb2857ccc840429cd2fd2e802180aa19
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/layout/fly.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/layout/fly.cxx b/sw/source/core/layout/fly.cxx index 314888841ec5..c87bf59d8e9e 100644 --- a/sw/source/core/layout/fly.cxx +++ b/sw/source/core/layout/fly.cxx @@ -818,8 +818,8 @@ void SwFlyFrame::UpdateAttr_( const SfxPoolItem *pOld, const SfxPoolItem *pNew, if ( FrameSizeChg( rNew ) ) NotifyDrawObj(); rInvFlags |= 0x1A; - break; } + break; case RES_FRM_SIZE: case RES_FMT_CHG: |