Fix CanonPath::dirOf() returning a string_view of a temporary

https://hydra.nixos.org/build/202837872
This commit is contained in:
Eelco Dolstra 2022-12-23 15:32:54 +01:00
parent 17373debe9
commit 64c60f7241

View file

@ -110,7 +110,7 @@ public:
std::optional<std::string_view> dirOf() const
{
if (isRoot()) return std::nullopt;
return path.substr(0, path.rfind('/'));
return ((std::string_view) path).substr(0, path.rfind('/'));
}
std::optional<std::string_view> baseName() const