ace

Results 6 issues of ace

Hi, I recently fuzz the libdeflate for parsing zlib format file and found some interesting cases. Specifically, libdeflate accepts the file without any issue while another parser, the [zlib](https://github.com/madler/zlib) rejects...

enhancement

### Contact Details [email protected] ### What happened? A bug happened! 运行环境: ubuntu 22.04 固件版本: no ### Version master (Default) ### What soultions are you seeing the problem on? _No response_...

bug

The parser accepts invalid numbers (i.e., leading zeros). This is not allowed according to the [specification](https://www.ietf.org/rfc/rfc4627.txt?number=4627) in section 2.4. It can be reproduced with the input: {"a":00000000}

Hi, I find a rare case when utf-8 byte order mark (BOM) \xef\xbb\xbf involved. Specifically, it will reject the json text when handling such case: ``` const char *s =...

Hi, I have found an issue with cJSON's handling of special characters in JSON strings. According to the specifications outlined in [RFC 8259, Section 7](https://www.rfc-editor.org/rfc/rfc8259#section-7) > ......, All Unicode characters...

Hi, we have encountered an error when attempting to parse a JSON text using the parser. However, we have checked the text against the JSON grammar specified in RFC 7159...