mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-19 10:02:45 -05:00
Fix use of uninitialized variable in mp4 metadata parser
Change-Id: Idca69e7429af13609785755d4e152d87f471c462
This commit is contained in:
parent
34fcea0b20
commit
6b1b7b6016
1 changed files with 1 additions and 1 deletions
|
|
@ -529,7 +529,7 @@ static bool read_mp4_tags(int fd, struct mp3entry* id3,
|
||||||
{
|
{
|
||||||
char value[TAG_VALUE_LENGTH];
|
char value[TAG_VALUE_LENGTH];
|
||||||
char* value_p = value;
|
char* value_p = value;
|
||||||
char* any;
|
char* any = NULL;
|
||||||
unsigned int length = sizeof(value);
|
unsigned int length = sizeof(value);
|
||||||
|
|
||||||
read_mp4_tag_string(fd, size, &value_p, &length, &any);
|
read_mp4_tag_string(fd, size, &value_p, &length, &any);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue