Focus: fix segfault due to bad call to Eo function.
authorDaniel Zaoui <daniel.zaoui@samsung.com>
Tue, 18 Mar 2014 06:07:14 +0000 (08:07 +0200)
committerDaniel Zaoui <daniel.zaoui@samsung.com>
Tue, 18 Mar 2014 06:14:44 +0000 (08:14 +0200)
commit1db6c55fe92b78feb2ddb27dcf1db3516231811e
treef10c93fb89757e165d659303c1df4ece174d5a42
parent6749251b21dab2c7fcb498e7171458c553e1dc08
Focus: fix segfault due to bad call to Eo function.

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
src/lib/elm_genlist.c
src/lib/elm_list.c