1
0
Fork 0

In case a path continues, but no child was found then break out of main for loop.

It was a bug that when there are children in the next node, but no parameterised one,  having a non-existent path element caused the main loop to continue and firing an if pathLen == i+1 case like if there was a legit node found.
This commit is contained in:
Alexander Andreev 2023-08-11 18:36:13 +04:00
parent e25a8a42c3
commit 0717a2e3d3
Signed by: Arav
GPG Key ID: D22A817D95815393
1 changed files with 2 additions and 0 deletions

View File

@ -96,6 +96,8 @@ outer:
curNode = paramNode
continue
}
break outer
}
}