This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
avfilter/af_adelay: use av_freep(), do not leave stale pointers in memory
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.5
Michael Niedermayer
11 years ago
parent
aba873bbd0
commit
2d6f31730c
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavfilter/af_adelay.c
+ 1
- 1
libavfilter/af_adelay.c
View File
@@ -246,7 +246,7 @@ static av_cold void uninit(AVFilterContext *ctx)
int i;
for (i = 0; i < s->nb_delays; i++)
av_free(s->chandelay[i].samples);
av_free
p
(
&
s->chandelay[i].samples);
av_freep(&s->chandelay);
}
Write
Preview
Loading…
Cancel
Save