mirror of https://github.com/FFmpeg/FFmpeg.git
The icy_metadata_headers string never gets initialized, so, during the first call to av_strlcatf() in parse_icy(), strlen() will be called on a pointer to uninitialized memory. At best this causes some garbage data to be left at the start of the string. By initializing icy_metadata_headers to the empty string, the first call to strlen() will always return 0, so that data is appended from the start of the string. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>pull/293/head
parent
d15c536123
commit
6998a9f4c4
1 changed files with 4 additions and 0 deletions
Loading…
Reference in new issue