Description
Line 164 in a724a9e
ThrowInvalidURL
takes an std::optional<std::string>
as third parameter. Passing nullptr
constructs a std::string
from that null pointer, this is undefined behaviour (upgraded to ill-formed in C++23). At a glance, it would seem that std::nullopt
was the intended third argument.
Activity