mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 15:22:15 +00:00
ZCCParseNode needs to initialize TopNode
- If the parsing is a complete failure, then TopNode won't ever be set to anything during the parsing process.
This commit is contained in:
parent
733e5fa2e1
commit
aadd4e4de6
1 changed files with 1 additions and 0 deletions
|
@ -2,6 +2,7 @@ struct ZCCParseState
|
|||
{
|
||||
ZCCParseState(FScanner &scanner) : sc(scanner)
|
||||
{
|
||||
TopNode = NULL;
|
||||
}
|
||||
|
||||
FScanner ≻
|
||||
|
|
Loading…
Reference in a new issue