Le 21/11/2014 07:26, Tristan Matthews a écrit : > + p_sys->p_buf = realloc(p_sys->p_buf, p_sys->i_frame_size); > + if (!p_sys->p_buf) > + return NULL; Realloc code is wrong and then leaking. see malloc(3), last line of return value. Francois