summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorEric Haszlakiewicz <erh+git@nimenees.com>2020-06-21 18:17:40 +0000
committerEric Haszlakiewicz <erh+git@nimenees.com>2020-06-21 18:29:57 +0000
commita68566bf6a2b44b5932072e85261a971097bc0a9 (patch)
tree4aa1a690675b26b23fcf1eaaf20ddec53c4ae5b1 /ChangeLog
parent197e3724641f26a54546c66ecdf6bf950735e05b (diff)
downloadjson-c-a68566bf6a2b44b5932072e85261a971097bc0a9.tar.gz
Issue #616: Change the parsing of surrogate pairs in unicode escapes so it uses a couple of additional states instead of assuming the low surrogate is already present, to ensure that we correctly handle various cases of incremental parsing.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog2
1 files changed, 2 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index b785060..0ca4b59 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -25,6 +25,8 @@ Other changes
Add json_object_array_shrink() and array_list_shrink() functions.
* Add json_object_new_array_ext(int) and array_list_new_2(int) to allow
arrays to be allocated with the exact size needed, when known.
+* Parsing of surrogate pairs in unicode escapes now properly handles
+ incremental parsing.
***