From ec4dbd88a6317a52f10a418fa4991994987bbc44 Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Wed, 21 Oct 2015 14:32:44 +0200 Subject: [PATCH] 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 --- src/lib/ephysics/ephysics_body.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/ephysics/ephysics_body.cpp b/src/lib/ephysics/ephysics_body.cpp index b6a0abf6e1..c2120265c0 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))