diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-01-28 14:24:05 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-01-28 14:30:44 +0000 |
commit | eab105e9433c4a01b0006b6eac085ba92af0763d (patch) | |
tree | 1f78c1d4cc436995eda601537284e6f5b01abc49 /dbaccess | |
parent | 9add737f88c46a21e9d49b9940c41c443207962a (diff) |
coverity#705140 Missing break in switch
Change-Id: I1b08e9afda2eeb3c4c79154376f34cad3e1f0a4c
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/core/api/FilteredContainer.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/dbaccess/source/core/api/FilteredContainer.cxx b/dbaccess/source/core/api/FilteredContainer.cxx index 7e5de81e4a84..87f9de9cb37b 100644 --- a/dbaccess/source/core/api/FilteredContainer.cxx +++ b/dbaccess/source/core/api/FilteredContainer.cxx @@ -462,6 +462,7 @@ sal_Int32 createWildCardVector(Sequence< OUString >& _rTableFilter, ::std::vecto { default: SAL_WARN("dbaccess", "OTableContainer::getAllTableTypeFilter: unknown TableTypeFilterMode!" ); + /* Fall through */ case FILTER_MODE_MIX_ALL: _rFilter.realloc( 3 ); _rFilter[0] = sView; |