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
This commit is contained in:
Stefan Schmidt 2015-10-21 14:32:44 +02:00
parent 10c8650b1e
commit ec4dbd88a6
1 changed files with 1 additions and 0 deletions

View File

@ -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))