fastjson 1.2.28死循环bug(不知道之前有没有)

ryhaxcpt  于 3个月前  发布在  其他
关注(0)|答案(2)|浏览(53)

入口
DefaultJSONParser(final Object input, final JSONLexer lexer, final ParserConfig config)构造函数
条件
输入的字符串以"//"开始
结果
抛出java.lang.StringIndexOutOfBoundsException异常
死循环位置
JSONLexerBase.skipComment
if (ch == '/') { for (;;) { next(); if (ch == '\n') { next(); return; } } }

相关问题