mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-26 22:31:05 +00:00
fix another struct type parsing bug
This commit is contained in:
parent
b7d7e7e87f
commit
a9fb183d19
1 changed files with 3 additions and 2 deletions
|
@ -463,9 +463,10 @@ _parse_type (const char **str)
|
|||
(*str)++;
|
||||
while (**str && **str != '}')
|
||||
_parse_type (str);
|
||||
if (**str != '}')
|
||||
return 0;
|
||||
}
|
||||
if (**str != '}')
|
||||
return 0;
|
||||
(*str)++;
|
||||
return new.aux_type;
|
||||
}
|
||||
if (**str != '=') {
|
||||
|
|
Loading…
Reference in a new issue