Skip to content
Snippets Groups Projects
Commit e6f9faa9 authored by Julio Sánchez Fernández's avatar Julio Sánchez Fernández
Browse files

Fixed parsing of noidlen
parent fbcbf296
No related branches found
No related tags found
No related merge requests found
......@@ -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)++;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment