Fixed parsing of noidlen

This commit is contained in:
Julio Sánchez Fernández 1999-05-29 01:32:37 +00:00
parent fbcbf29651
commit e6f9faa94a

View File

@ -676,7 +676,7 @@ parse_noidlen(char **sp, int *code, int *len)
}
if ( **sp == '{' ) {
(*sp)++;
*len = atoi(**sp);
*len = atoi(*sp);
while ( isdigit(**sp) )
(*sp)++;
(*sp)++;