Check structure depth when parsing JSON

This commit is contained in:
Tatsuhiro Tsujikawa 2012-07-11 23:20:20 +09:00
parent 57b46d5123
commit cd67e27ca4
3 changed files with 23 additions and 7 deletions

View file

@ -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