projects
/
libav.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
asfdec: prevent possible memory leak in the asf_read_metadata_obj
[libav.git]
/
libavformat
/
asfdec.c
diff --git
a/libavformat/asfdec.c
b/libavformat/asfdec.c
index
c12d8c7
..
f2dd489
100644
(file)
--- a/
libavformat/asfdec.c
+++ b/
libavformat/asfdec.c
@@
-572,7
+572,8
@@
static int asf_read_metadata_obj(AVFormatContext *s, const GUIDParseTable *g)
if ((ret = process_metadata(s, name, name_len, val_len, type,
&asf->asf_sd[st_num].asf_met)) < 0)
break;
- }
+ } else
+ av_freep(&name);
}
}