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
avutil/hmac: use av_freep() to avoid leaving stale pointers in memory
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.6
Michael Niedermayer
10 years ago
parent
6d639ecf44
commit
05e74ac2f3
1 changed files
with
1 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavutil/hmac.c
+ 1
- 1
libavutil/hmac.c
View File
@@ -127,7 +127,7 @@ void av_hmac_free(AVHMAC *c)
{
{
if (!c)
if (!c)
return;
return;
av_free(c->hash);
av_free
p
(
&
c->hash);
av_free(c);
av_free(c);
}
}
Write
Preview
Loading…
Cancel
Save