From: Stefan Schmidt Date: Mon, 30 Nov 2015 15:23:00 +0000 (+0100) Subject: emotion: correct argument order for calloc() X-Git-Tag: upstream/1.20.0~8100 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=527ac119f1de21034e761b24923b0cb06d946649;p=platform%2Fupstream%2Fefl.git emotion: correct argument order for calloc() calloc() expects count first and the actual size to allocate as second argument. Say Thank You to smatch for finding this issues for us. --- diff --git a/src/modules/ethumb/emotion/emotion.c b/src/modules/ethumb/emotion/emotion.c index 6134406..22473188 100644 --- a/src/modules/ethumb/emotion/emotion.c +++ b/src/modules/ethumb/emotion/emotion.c @@ -367,7 +367,7 @@ _thumb_generate(Ethumb *e) const char *file; Ethumb_Thumb_Format f; double dv; - struct _emotion_plugin *_plugin = calloc(sizeof(struct _emotion_plugin), 1); + struct _emotion_plugin *_plugin = calloc(1, sizeof(struct _emotion_plugin)); o = emotion_object_add(ethumb_evas_get(e)); r = emotion_object_init(o, NULL);