Commit 9402b23d authored by Max Kellermann's avatar Max Kellermann

playlist_song: fix NULL pointer dereference

parent 246db3d5
ver 0.16.3 (2011/??/??)
* fix assertion failure in audio format mask parser
* fix NULL pointer dereference in playlist parser
* decoder:
- ffmpeg: support libavcodec 0.7
......
......@@ -129,7 +129,7 @@ playlist_check_translate_song(struct song *song, const char *base_uri)
else
uri = g_strdup(uri);
if (uri_has_scheme(base_uri)) {
if (uri_has_scheme(uri)) {
dest = song_remote_new(uri);
g_free(uri);
} else {
......
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