elementary: fix double eina_value_free in Efl.Ui.Homogeneous_Model.property.set

Model do not own the Eina_Value when it is set on them. They can make a copy of it,
but shouldn't free it.

Reviewed-by: Marcel Hollerbach <mail@marcel-hollerbach.de>
Differential Revision: https://phab.enlightenment.org/D9945
This commit is contained in:
Cedric Bail 2019-09-14 22:22:27 -07:00
parent 9b618316c4
commit 3656996df4
1 changed files with 0 additions and 1 deletions

View File

@ -35,7 +35,6 @@ _efl_ui_homogeneous_model_property_set(Eo *obj, Eina_Value *value,
return efl_loop_future_rejected(obj, EFL_MODEL_ERROR_INCORRECT_VALUE);
*defined = EINA_TRUE;
f = efl_loop_future_resolved(obj, *value);
eina_value_free(value);
return f;
}