From 4343c497173e4e2c3066b63d4e71c46bfc475008 Mon Sep 17 00:00:00 2001 From: Julien Nabet Date: Sun, 17 Mar 2013 07:22:17 +0100 Subject: coverity#705137 Missing break in switch Change-Id: Ie54c888e15e9564c7e1d0efb54f587a586a53631 Reviewed-on: https://gerrit.libreoffice.org/2780 Reviewed-by: Fridrich Strba Tested-by: Fridrich Strba --- cppu/source/typelib/typelib.cxx | 1 + 1 file changed, 1 insertion(+) 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; -- cgit