diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-09 15:53:22 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-09 15:53:22 +0000 |
commit | a6b41b0c1460d3c9516b8d4e4d88abdc4fdb7ea2 (patch) | |
tree | 7198d65c8943cbf70c646d9a0fcb06a973f683a8 /sfx2/source | |
parent | 57e0062f2043f7a0382db5f4d01c6c70ca8aca46 (diff) |
coverity#1169825 Dereference after null check
Change-Id: I74df9084f46e38901b6682b892fa7d0f71d72572
Diffstat (limited to 'sfx2/source')
-rw-r--r-- | sfx2/source/control/bindings.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/control/bindings.cxx b/sfx2/source/control/bindings.cxx index 0a007471dda1..905fcfe01144 100644 --- a/sfx2/source/control/bindings.cxx +++ b/sfx2/source/control/bindings.cxx @@ -1917,7 +1917,7 @@ void SfxBindings::ClearCache_Impl( sal_uInt16 nSlotId ) { SfxStateCache* pCache = GetStateCache(nSlotId); if (!pCache) - return + return; pCache->ClearCache(); } |