tests_: elementary: remove not used allocation in collection view test

Allocated but never used (and never freed). Seems like a copy and paste
bug to me.

CID: 1412363

Signed-off-by: Stefan Schmidt <s.schmidt@samsung.com>
Reviewed-by: Marcel Hollerbach <mail@marcel-hollerbach.de>
Differential Revision: https://phab.enlightenment.org/D11442
This commit is contained in:
Stefan Schmidt 2020-03-02 16:46:19 +01:00 committed by Marcel Hollerbach
parent 57adf37303
commit 120c0e4032
1 changed files with 0 additions and 4 deletions

View File

@ -45,12 +45,8 @@ static Eina_Value
_children_get(Eo *obj EINA_UNUSED, void *data EINA_UNUSED, const Eina_Value v)
{
Efl_Model *child;
Eina_Future **all;
unsigned int i, len;
all = calloc(1 + 1, sizeof(Eina_Future*));
if (!all) return eina_value_error_init(ENOMEM);
EINA_VALUE_ARRAY_FOREACH(&v, len, i, child)
{
Eina_Value *rel_val, *title_val;