Commit 00eea0e6 authored by Max Kellermann's avatar Max Kellermann

song: initialize mtime in song_alloc()

parent badb8277
......@@ -49,6 +49,7 @@ song_alloc(const char *url, struct directory *parent)
song->tag = NULL;
memcpy(song->url, url, urllen + 1);
song->parent = parent;
song->mtime = 0;
return song;
}
......
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