From c311dc638b8358f27664fba3985d9212748cf92a Mon Sep 17 00:00:00 2001 From: Jaeun Choi Date: Wed, 9 Aug 2017 16:07:51 +0900 Subject: [PATCH] test_gesture_layer3: add null checking after memory allocation --- src/bin/elementary/test_gesture_layer3.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/bin/elementary/test_gesture_layer3.c b/src/bin/elementary/test_gesture_layer3.c index 9608d614a4..1029087d44 100644 --- a/src/bin/elementary/test_gesture_layer3.c +++ b/src/bin/elementary/test_gesture_layer3.c @@ -473,6 +473,8 @@ photo_object_add(Evas_Object *parent, Evas_Object *ic, const char *icon, char buf[PATH_MAX]; Photo_Object *po; po = calloc(1, sizeof(*po)); + if (!po) return NULL; + po->base_zoom = po->zoom = BASE_ZOOM; if (ic) @@ -559,6 +561,7 @@ test_gesture_layer3(void *data EINA_UNUSED, Evas_Object *obj EINA_UNUSED, int ind = 0; Photo_Object **photo_array; photo_array = calloc(4, sizeof(*photo_array)); + if (!photo_array) return; w = 480; h = 800;