db/simple/Save: initialize array without memset()

This commit is contained in:
Max Kellermann 2023-09-06 14:16:28 +02:00
parent 046a385070
commit ad854e9867
1 changed files with 1 additions and 3 deletions

View File

@ -57,15 +57,13 @@ db_load_internal(LineReader &file, Directory &music_root)
char *line;
unsigned format = 0;
bool found_charset = false, found_version = false;
bool tags[TAG_NUM_OF_ITEM_TYPES];
bool tags[TAG_NUM_OF_ITEM_TYPES]{};
/* get initial info */
line = file.ReadLine();
if (line == nullptr || strcmp(DIRECTORY_INFO_BEGIN, line) != 0)
throw std::runtime_error("Database corrupted");
memset(tags, false, sizeof(tags));
while ((line = file.ReadLine()) != nullptr &&
strcmp(line, DIRECTORY_INFO_END) != 0) {
const char *p;