discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=f886c60a0d6957c73744645cc49f11887a3a649f
commit f886c60a0d6957c73744645cc49f11887a3a649f Author: Mike Blumenkrantz <[email protected]> Date: Fri May 9 10:18:38 2014 -0400 ecore_x_image_get() should not abort when shm creation fails --- src/lib/ecore_x/xlib/ecore_x_image.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/lib/ecore_x/xlib/ecore_x_image.c b/src/lib/ecore_x/xlib/ecore_x_image.c index 9b629b5..6188cb0 100644 --- a/src/lib/ecore_x/xlib/ecore_x_image.c +++ b/src/lib/ecore_x/xlib/ecore_x_image.c @@ -309,11 +309,7 @@ ecore_x_image_get(Ecore_X_Image *im, _ecore_x_image_shm_create(im); if (!im->xim) - { - fprintf(stderr, "BLAAAAAAAAAAAAH\n"); - abort(); - return EINA_FALSE; - } + return EINA_FALSE; _ecore_x_image_err = 0; --
