Re: [libav-devel] [PATCH] af_compand: request_frame always gets at least one

2014-07-08 Thread Luca Barbato
On 06/07/14 07:24, Andrew Kelley wrote: This fixes a segmentation fault because request_frame in fifo.c assumes that the call to ff_request_frame will populate fifo-root.next. Before, it was possible for request_frame in af_compand to not do this, resulting in a null pointer access. Now,

Re: [libav-devel] [PATCH] af_compand: request_frame always gets at least one

2014-07-08 Thread Anton Khirnov
On Sat, 5 Jul 2014 22:24:43 -0700, Andrew Kelley superjo...@gmail.com wrote: This fixes a segmentation fault because request_frame in fifo.c assumes that the call to ff_request_frame will populate fifo-root.next. Before, it was possible for request_frame in af_compand to not do this,

[libav-devel] [PATCH] af_compand: request_frame always gets at least one

2014-07-05 Thread Andrew Kelley
This fixes a segmentation fault because request_frame in fifo.c assumes that the call to ff_request_frame will populate fifo-root.next. Before, it was possible for request_frame in af_compand to not do this, resulting in a null pointer access. Now, request_frame in af_compand always will return at