On 4 January 2017 at 10:16, Rostislav Pehlivanov <atomnuker at gmail.com> 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;