We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The parser accepts invalid numbers (i.e., leading zeros). This is not allowed according to the specification in section 2.4.
It can be reproduced with the input: {"a":00000000}
The text was updated successfully, but these errors were encountered:
also accept invalid strings (i.e., containing unescaped control characters), which is not allowed according to the section 7 of specification.
It can be reproduced with the following buf:
char buf[4]; buf[0] = '\"'; buf[1] = 1; // this is unescaped control characters buf[2] = '\"'; buf[3] = 0;
Sorry, something went wrong.
No branches or pull requests
The parser accepts invalid numbers (i.e., leading zeros).
This is not allowed according to the specification in section 2.4.
It can be reproduced with the input:
{"a":00000000}
The text was updated successfully, but these errors were encountered: