2014-04-21 12:36 GMT+02:00 Saúl Ibarra Corretgé <[email protected]>:
> You still need to go through the uv_close callback dance. When you
> initialize a handle (uv_tcp_init in your case) the loop adds it to a list of
> handles it keeps. That list can be walked using uv_walk. So, if you free the
> handle before uv_close, you'd have some use-after-free case when that list
> is modified (ie, when a new handle is created, uv_walk is used, etc).

Clear, thanks a lot.




-- 
Iñaki Baz Castillo
<[email protected]>

-- 
You received this message because you are subscribed to the Google Groups 
"libuv" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/libuv.
For more options, visit https://groups.google.com/d/optout.

Reply via email to