Focus: fix segfault due to bad call to Eo function

Desktop / Enlightenment / Elementary - Daniel Zaoui [samsung.com] - 18 March 2014 01:14 UTC

Due to Eolian auto-generation, legacy parameters are directly transferred to Eo functions without conversion.

In this case, is_next was Eina_Bool in legacy and Eina_Bool * in Eo. The logic code was expecting a pointer but was receiving a Eina_Bool.

The fix consists in giving the logic code the Eina_Bool instead of the pointer.

@fix

1db6c55 Focus: fix segfault due to bad call to Eo function.
src/lib/elm_genlist.c | 4 ++--
src/lib/elm_list.c | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)

Upstream: git.enlightenment.org


  • Share