mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 05:27:38 +03:00
Check structure depth when parsing JSON
This commit is contained in:
parent
57b46d5123
commit
cd67e27ca4
3 changed files with 23 additions and 7 deletions
|
@ -288,6 +288,9 @@ void ValueBaseJsonParserTest::testParseUpdate_error()
|
|||
checkDecodeError("[1.1e]");
|
||||
// bool
|
||||
checkDecodeError("[t");
|
||||
// too deep structure
|
||||
checkDecodeError(std::string(51, '[')+std::string(51,']'));
|
||||
checkDecodeError(std::string(50, '[')+"{\"foo\":100}"+std::string(50,']'));
|
||||
}
|
||||
|
||||
} // namespace aria2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue