summaryrefslogtreecommitdiff
path: root/cppu
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2013-03-17 07:22:17 +0100
committerFridrich Strba <fridrich@documentfoundation.org>2013-03-18 10:05:33 +0000
commit4343c497173e4e2c3066b63d4e71c46bfc475008 (patch)
treeda0727ce673b8b4446b2dff8b4eb5b6fed2a92ca /cppu
parente87a9f7854d5180a50cae8a48012556482de8708 (diff)
coverity#705137 Missing break in switch
Change-Id: Ie54c888e15e9564c7e1d0efb54f587a586a53631 Reviewed-on: https://gerrit.libreoffice.org/2780 Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org> Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
Diffstat (limited to 'cppu')
-rw-r--r--cppu/source/typelib/typelib.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/cppu/source/typelib/typelib.cxx b/cppu/source/typelib/typelib.cxx
index 445f82434b9a..b1e9cca1388c 100644
--- a/cppu/source/typelib/typelib.cxx
+++ b/cppu/source/typelib/typelib.cxx
@@ -1480,6 +1480,7 @@ static inline void typelib_typedescription_destructExtendedMembers(
case typelib_TypeClass_STRUCT:
delete[] reinterpret_cast< typelib_StructTypeDescription * >(pTD)->
pParameterizedTypes;
+ // Fall-through intentional
case typelib_TypeClass_EXCEPTION:
{
typelib_CompoundTypeDescription * pCTD = (typelib_CompoundTypeDescription*)pTD;