Fix getting subkey with trailing or duplacate backslashes

This commit is contained in:
ssvine
2026-01-02 17:35:45 +03:00
parent df46576875
commit 9de620f713

View File

@@ -107,6 +107,11 @@ class hive_parser
for (const auto& key_part : key)
{
if (key_part.empty())
{
continue;
}
if (!current_key)
{
return nullptr;