stefan pushed a commit to branch master.

http://git.enlightenment.org/core/elementary.git/commit/?id=23dc11debca551b35aabcb475420cd3e29df38e5

commit 23dc11debca551b35aabcb475420cd3e29df38e5
Author: Stefan Schmidt <ste...@osg.samsung.com>
Date:   Mon Nov 30 15:11:06 2015 +0100

    test_access: 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/bin/test_access.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/bin/test_access.c b/src/bin/test_access.c
index ae567ca..80b8ea3 100644
--- a/src/bin/test_access.c
+++ b/src/bin/test_access.c
@@ -100,7 +100,7 @@ Evas_Object *gl_access_content_full_get(void *data 
EINA_UNUSED, Evas_Object *obj
 
    for (i = 0; i < 4; i++)
      {
-        Item_Data *id = calloc(sizeof(Item_Data), 1);
+        Item_Data *id = calloc(1, sizeof(Item_Data));
         id->index = i;
 
         elm_gengrid_item_append(grid, gic, id, NULL, NULL);
@@ -188,7 +188,7 @@ test_access(void *data EINA_UNUSED, Evas_Object *obj 
EINA_UNUSED, void *event_in
 
    for (i = 1; i < 10; i++)
      {
-        Item_Data *id = calloc(sizeof(Item_Data), 1);
+        Item_Data *id = calloc(1, sizeof(Item_Data));
         id->index = i;
 
         if (i % 4)

-- 


Reply via email to