pull/687/merge
Luca Errani 2022-12-03 12:00:41 -06:00 committed by GitHub
commit 5ab0c0b0c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -61,7 +61,11 @@ path manifest::canonicalize(const std::vector<xlnt::relationship> &rels) const
if (component == "..")
{
absolute_parts.pop_back();
if (absolute_parts.size() > 0)
{
absolute_parts.pop_back();
}
continue;
}