avutil/tx: Use proper deallocator
May fix the FATE failures on x64 Windows here: https://fate.ffmpeg.org/report.cgi?slot=x86_64-msvc17-windows-native&time=20221125130443 Reviewed-by: Lynne <dev@lynne.ee> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
2ad199ae31
commit
1a7efafd33
1 changed files with 1 additions and 1 deletions
|
|
@ -857,7 +857,7 @@ av_cold int ff_tx_init_subtx(AVTXContext *s, enum AVTXType type,
|
|||
for (int i = 0; i < len; i++)
|
||||
sctx->map[tmp[i]] = i;
|
||||
|
||||
free(tmp);
|
||||
av_free(tmp);
|
||||
}
|
||||
|
||||
s->nb_sub++;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue