On Mon, Mar 19, 2018 at 8:47 PM, Cedric BAIL <cedric.b...@free.fr> wrote:
> cedric pushed a commit to branch master.
>
> http://git.enlightenment.org/core/efl.git/commit/?id=21164b5a56f2ff0fbe8e60f85f7070212cbdfe38
>
> commit 21164b5a56f2ff0fbe8e60f85f7070212cbdfe38
> Author: Cedric Bail <ced...@osg.samsung.com>
> Date:   Mon Mar 19 16:38:07 2018 -0700
>
>     eo: automatically cancel a future that is attached to an invalidated 
> object.
> ---
>  src/lib/eo/eo_base_class.c | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/src/lib/eo/eo_base_class.c b/src/lib/eo/eo_base_class.c
> index 5fd47c4689..872ae3c16b 100644
> --- a/src/lib/eo/eo_base_class.c
> +++ b/src/lib/eo/eo_base_class.c
> @@ -1983,6 +1983,7 @@ efl_future_cb_from_desc(Eo *o, const Efl_Future_Cb_Desc 
> desc)
>     EINA_SAFETY_ON_NULL_GOTO(o, end);
>     pd = efl_data_scope_get(o, EFL_OBJECT_CLASS);
>     EINA_SAFETY_ON_NULL_GOTO(pd, end);
> +   if (pd->invalidate) goto end;

I'd use EINA_SAFETY_ON_TRUE_GOTO(pd->invalidate, end);

so it will emit a message.


-- 
Gustavo Sverzut Barbieri
--------------------------------------
Mobile: +55 (16) 99354-9890

------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to