Kaydet (Commit) 14744ab7 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#705161 Missing break in switch

Change-Id: If936313919b41183d3fe657f5e21f885a89838b6
üst 4ba25fba
......@@ -697,8 +697,9 @@ void DXFHatchEntity::EvaluateGroup( DXFGroupReader & rDGR )
case 47 : fPixelSize = rDGR.GetF(); break;
case 98 : nNumberOfSeedPoints = rDGR.GetI(); break;
//!! passthrough !!
case 92 : nCurrentBoundaryPathIndex++;
case 92:
nCurrentBoundaryPathIndex++;
//fallthrough
default:
{
sal_Bool bExecutingGroupCode = sal_False;
......
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