From: Stefan Schmidt Date: Wed, 21 Oct 2015 12:32:44 +0000 (+0200) Subject: ephysics: add missing break in switch to avoid override variable with other cases X-Git-Tag: v1.16.0-beta3~33 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ec4dbd88a6317a52f10a418fa4991994987bbc44;p=platform%2Fupstream%2Fefl.git ephysics: add missing break in switch to avoid override variable with other cases Due to the missing break we would fall into the next case here which might lead to variables overridden with wrong values. CID: 1261441, 1261440, 1261438 --- diff --git a/src/lib/ephysics/ephysics_body.cpp b/src/lib/ephysics/ephysics_body.cpp index b6a0abf..c212026 100644 --- a/src/lib/ephysics/ephysics_body.cpp +++ b/src/lib/ephysics/ephysics_body.cpp @@ -4624,6 +4624,7 @@ _ephysics_body_box_face_obj_resize_cb(void *data, Evas *e EINA_UNUSED, Evas_Obje bw = body->size.w; bh = h; bd = w; + break; case EPHYSICS_BODY_BOX_FACE_TOP: case EPHYSICS_BODY_BOX_FACE_BOTTOM: if ((w == body->size.w) && (h == body->size.d))