test_access: correct argument order for calloc()
authorStefan Schmidt <stefan@osg.samsung.com>
Mon, 30 Nov 2015 14:11:06 +0000 (15:11 +0100)
committerStefan Schmidt <stefan@osg.samsung.com>
Mon, 30 Nov 2015 15:24:58 +0000 (16:24 +0100)
calloc() expects count first and the actual size to allocate as second
argument. Say Thank You to smatch for finding this issues for us.

legacy/elementary/src/bin/test_access.c

index ae567ca..80b8ea3 100644 (file)
@@ -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)