storage/curl: fix nullptr dereference
Pass a std::string to PathTraitsUTF8::Relative(), implicitly casting it to std::string_view. This selects the right overload which returns std::string_view instead of `const char *`; the latter could return `nullptr` which would cause the implicit conversion of the return value to std::string_view to crash. Regression caused by commitsead208987d
anda98d627c0b
. Closes https://github.com/MusicPlayerDaemon/MPD/issues/995
This commit is contained in:
@@ -80,7 +80,7 @@ std::string_view
|
||||
CurlStorage::MapToRelativeUTF8(std::string_view uri_utf8) const noexcept
|
||||
{
|
||||
return PathTraitsUTF8::Relative(base,
|
||||
CurlUnescape(uri_utf8).c_str());
|
||||
CurlUnescape(uri_utf8));
|
||||
}
|
||||
|
||||
class BlockingHttpRequest : protected CurlResponseHandler {
|
||||
|
Reference in New Issue
Block a user