Path::FromUTF8() returns nulled instance on error, add error handling where required
This commit is contained in:
@@ -46,7 +46,8 @@ playlist_print_song(FILE *file, const struct song *song)
|
||||
const Path uri_fs = Path::FromUTF8(uri);
|
||||
g_free(uri);
|
||||
|
||||
fprintf(file, "%s\n", uri_fs.c_str());
|
||||
if (!uri_fs.IsNull())
|
||||
fprintf(file, "%s\n", uri_fs.c_str());
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user