avutil/tx: should check against (*ctx)

ctx is a pointer to pointer here.

Signed-off-by: Ruiling Song <ruiling.song@intel.com>
pull/311/head
Ruiling Song 6 years ago committed by James Almer
parent c2771bbf81
commit 65646db8e8
  1. 2
      libavutil/tx.c

@ -697,7 +697,7 @@ static int gen_mdct_exptab(AVTXContext *s, int len4, double scale)
av_cold void av_tx_uninit(AVTXContext **ctx)
{
if (!ctx)
if (!(*ctx))
return;
av_free((*ctx)->pfatab);

Loading…
Cancel
Save