Commit 0e49de86 authored by Max Kellermann's avatar Max Kellermann

input/last: add nullptr check to Open(), fixes assertion failure

parent f2e45297
ver 0.22.8 (not yet released)
* fix crash bug in "albumart" command (0.22.7 regression)
ver 0.22.7 (2021/05/19)
* protocol
......
......@@ -69,7 +69,8 @@ public:
is = open(new_uri, mutex);
uri = std::forward<U>(new_uri);
ScheduleClose();
if (is)
ScheduleClose();
return is.get();
}
......
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