From 527ac119f1de21034e761b24923b0cb06d946649 Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Mon, 30 Nov 2015 16:23:00 +0100 Subject: [PATCH] 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. --- src/modules/ethumb/emotion/emotion.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.7.4