cJson为什么无法解析含有数组的json格式字符串?

有一字符串内容如下:
{
"status": "10",
"result": [{
"x": 11,
"y": 12
}, {
"x": 21,
"y": 22
}, {
"x": 31,
"y": 32
}]
}
在使用cJSONParse()函数时打包不成功,使用cJSONGetErrorPtr()函数又无法显示解析失败的字符串。
当将字符串内容改为如下显示时,使用cJSONParse()函数打包成功。
{
"status": "10",
"result": [{
"x": 11,
"y": 12
}, {
"x": 21,
"y": 22
}]
}
请问这是为什么呢?

https://www.cnblogs.com/blackhumour2018/p/9467232.html