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
avcodec/exr: fix null pointer dereference
Fixes CID1108582 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.1
Michael Niedermayer
11 years ago
parent
d0812f91c8
commit
80b1e1c03d
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/exr.c
+ 1
- 1
libavcodec/exr.c
View File
@@ -562,7 +562,7 @@ static int huf_uncompress(GetByteContext *gb,
fail:
for (i = 0; i < HUF_DECSIZE; i++) {
if (hdec
[i].p
)
if (hdec)
av_freep(&hdec[i].p);
}
Write
Preview
Loading…
Cancel
Save