Kaydet (Commit) 6e581cc2 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#705172 Missing break in switch

Change-Id: I23663877212be93bffe16edfa4b0bb70c8ef5e2e
üst b2c987f1
......@@ -738,8 +738,11 @@ SdrObject* SdrEscherImport::ProcessObj( SvStream& rSt, DffObjData& rObjData, voi
switch ( aPlaceholderAtom.nPlaceholderId )
{
case PPT_PLACEHOLDER_MASTERSLIDENUMBER : nHeaderFooterInstance++;
// fall-through
case PPT_PLACEHOLDER_MASTERFOOTER : nHeaderFooterInstance++;
// fall-through
case PPT_PLACEHOLDER_MASTERHEADER : nHeaderFooterInstance++;
// fall-through
case PPT_PLACEHOLDER_MASTERDATE : nHeaderFooterInstance++; break;
}
if ( ! ( nHeaderFooterInstance & 0xfffc ) ) // is this a valid instance ( 0->3 )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment