raster pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=91c0198273b906df15899eb61a7b1b39c46a2968
commit 91c0198273b906df15899eb61a7b1b39c46a2968 Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Fri Aug 22 19:47:55 2014 +0900 ephysics - fix explicit possible null deref fix CID 1039417 --- 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 4235d02..e7cb00d 100644 --- a/src/lib/ephysics/ephysics_body.cpp +++ b/src/lib/ephysics/ephysics_body.cpp @@ -5074,6 +5074,7 @@ _ephysics_body_soft_sphere_face_evas_object_del_cb(void *data, Evas *evas EINA_U break; } } + if (!face_obj) return; _ephysics_body_face_evas_object_del(body, face_obj, _ephysics_body_soft_sphere_face_obj_resize_cb); --
