diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-22 19:19:41 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-22 19:19:41 +0000 |
commit | 3013d986244a916ee5d397db75588f4bc6995d81 (patch) | |
tree | bc3df7e57c98ca846fab492a0869474ceeccdf2a /ucb/source | |
parent | f2598f43568e7de1c84e6ac7e8e01b658e7f06c8 (diff) |
coverity#705327 Missing break in switch
Change-Id: Idd05d33394dd56d82be560a6efbdbc96a86d329c
Diffstat (limited to 'ucb/source')
-rw-r--r-- | ucb/source/inc/regexpmap.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ucb/source/inc/regexpmap.hxx b/ucb/source/inc/regexpmap.hxx index 0d5fcb7a318d..f677e0bd7306 100644 --- a/ucb/source/inc/regexpmap.hxx +++ b/ucb/source/inc/regexpmap.hxx @@ -221,11 +221,13 @@ void RegexpMapIterImpl< Val >::next() case Regexp::KIND_DOMAIN: if (m_aIndex == m_pMap->m_aList[m_nList].end()) return; + //fall-through default: ++m_aIndex; if (m_nList == Regexp::KIND_DOMAIN || m_aIndex != m_pMap->m_aList[m_nList].end()) break; + //fall-through case -1: do { |