fix array type string parsing

This commit is contained in:
Bill Currie 2002-07-17 17:59:42 +00:00
parent 2c94688e87
commit 90fa657a5f

View file

@ -486,6 +486,8 @@ _parse_type (const char **str)
new.num_parms *= 10;
new.num_parms += *(*str)++ - '0';
}
while (isspace (**str))
(*str)++;
new.aux_type = _parse_type (str);
if (**str != ']')
return 0;