Fixed uninitialized variable in XLAT parser

https://forum.zdoom.org/viewtopic.php?t=57109
This commit is contained in:
alexey.lysiuk 2017-07-13 16:23:51 +03:00
parent c6351825b8
commit ac811f99c0
1 changed files with 1 additions and 0 deletions

View File

@ -301,6 +301,7 @@ boom_line(A) ::= boom_selector(sel) boom_op(op) boom_args(args).
{
A.bOrExisting = (op == OR_EQUAL);
A.bUseConstant = (args.filters == NULL);
A.ListSize = 0;
A.ArgNum = sel;
A.ConstantValue = args.constant;
A.AndValue = args.mask;