1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-13 23:27:43 +02:00

remove unneeded null check

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Signed-off-by: Benjamin Drung <bdrung@debian.org>
This commit is contained in:
benjamin.drung@gmail.com 2014-05-23 20:38:45 +00:00
parent 7a47f6fedd
commit 3aea9ad009

@ -694,8 +694,7 @@ bool ExportFFmpeg::Finalize()
// Free any buffers or structures we allocated. // Free any buffers or structures we allocated.
av_free(mEncFormatCtx); av_free(mEncFormatCtx);
if (mEncAudioFifoOutBuf != NULL) av_free(mEncAudioFifoOutBuf);
av_free(mEncAudioFifoOutBuf);
av_fifo_free(mEncAudioFifo); av_fifo_free(mEncAudioFifo);