fixed the processed length calculation bug in feed_json_data() in xli/json.c
This commit is contained in:
parent
df7a5eda5f
commit
4d556c475a
@ -796,7 +796,7 @@ static int feed_json_data (qse_json_t* json, const qse_mchar_t* data, qse_size_t
|
|||||||
else if (n > bcslen)
|
else if (n > bcslen)
|
||||||
{
|
{
|
||||||
/* incomplete sequence */
|
/* incomplete sequence */
|
||||||
*xlen = bcslen; /* need at lease this much */
|
*xlen = ptr - data; /* didn't manage to process in full */
|
||||||
return 0; /* feed more for incomplete sequence */
|
return 0; /* feed more for incomplete sequence */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user