Commit 305de100 authored by Max Kellermann's avatar Max Kellermann

decoder/oggflac: initialize the "tag" variable

parent c1a999c4
...@@ -283,7 +283,8 @@ oggflac_tag_dup(const char *file) ...@@ -283,7 +283,8 @@ oggflac_tag_dup(const char *file)
if (tag_is_defined(data.tag)) { if (tag_is_defined(data.tag)) {
tag = data.tag; tag = data.tag;
data.tag = NULL; data.tag = NULL;
} } else
tag = NULL;
flac_data_deinit(&data); flac_data_deinit(&data);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment