diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-01-28 13:27:33 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-01-28 14:30:39 +0000 |
commit | 06025bccf8672e7bebb0ccac17097cceb82105d4 (patch) | |
tree | 6a230630c196a0bd05690f132b7bcfcdea74f139 /ucb | |
parent | 65fd78a12345a901d2459ee7298d1550b70b985a (diff) |
coverity#440748 Explicit null dereferenced
Change-Id: I86c08660f2c01618b661b90c84757a1f7f2b9b83
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/sorter/sortdynres.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ucb/source/sorter/sortdynres.cxx b/ucb/source/sorter/sortdynres.cxx index c7a2f538b6ef..88cdcab084e5 100644 --- a/ucb/source/sorter/sortdynres.cxx +++ b/ucb/source/sorter/sortdynres.cxx @@ -321,6 +321,9 @@ SortedDynamicResultSet::impl_notify( const ListEvent& Changes ) } } + if (!pCurSet) + return; + Any aRet; try { |