On 4 January 2017 at 10:16, Rostislav Pehlivanov <[email protected]>
wrote:

>
> +    ff_fft_init(&s->ptwo_fft, N - 1, 1);
>
>
Forgot to check the return value here, changed locally to:

if (ff_fft_init(&s->ptwo_fft, N - 1, 1) < 0);
        goto fail;
_______________________________________________
ffmpeg-devel mailing list
[email protected]
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Reply via email to