lib/nbt: NBT::validateRawList() cannot be used for recursion #53
Labels
No Label
Bug
Build Problems
Discussion
Distribution
Enhancement
Far Future
Fix Later
TODO
WONTFIX
Workflow
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: BodgeMaster/FOSS-VG#53
Loading…
Reference in New Issue
There is no content yet.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may exist for a short time before cleaning up, in most cases it CANNOT be undone. Continue?
This is the cause of my issues with validating nested lists.
Forgot to add the reason: This is due to the function assuming that the list it is trying to validate has a name.
A quick and dirty fix would be adding a parameter
bool skipName
.Another possibility is moving the name processing outside of the list validator and renaming the function to something like
validateListBody()
.