diff options
author | Marvin Scholz <epirat07@gmail.com> | 2025-06-11 22:30:31 +0200 |
---|---|---|
committer | Marvin Scholz <epirat07@gmail.com> | 2025-06-26 23:40:42 +0200 |
commit | 564a0784bb9eb5ca259f128337781fd53e224e1b (patch) | |
tree | 02568fee87e9019d8b6c017d3fed948e90312217 | |
parent | 8430b8f9a9d9840cf70ea5bda3e774c0b3b23c23 (diff) | |
download | ffmpeg-564a0784bb9eb5ca259f128337781fd53e224e1b.tar.gz |
fftools/textformat: remove noop free
The tctx->hash was freed already right before.
Reviewed-by: softworkz <softworkz@hotmail.com>
-rw-r--r-- | fftools/textformat/avtextformat.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fftools/textformat/avtextformat.c b/fftools/textformat/avtextformat.c index f1811abb1c..fa5abce261 100644 --- a/fftools/textformat/avtextformat.c +++ b/fftools/textformat/avtextformat.c @@ -108,8 +108,6 @@ int avtext_context_close(AVTextFormatContext **ptctx) av_hash_freep(&tctx->hash); - av_hash_freep(&tctx->hash); - if (tctx->formatter) { if (tctx->formatter->uninit) ret = tctx->formatter->uninit(tctx); |