You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
we found an issue in the JSON parser of the project when dealing with control characters (0x00 and 0x1f). We provide a minimum working sample here: 1. For \u001f and 0x1f the ccan JSON parser becomes self-incompatible, since \u001f gets serialized to 0x1f, but 0x1f can not be parsed by the JSON parser (which is in accordance with the JSON specs).
The text was updated successfully, but these errors were encountered:
Thanks for the report. Alas, ccan is pretty moribund now, so it's probably unlikely that anything will happen about this. CCing @joeyadams who I believe is the author of that module, fwiw.
Hello,
we found an issue in the JSON parser of the project when dealing with control characters (0x00 and 0x1f). We provide a minimum working sample here: 1. For \u001f and 0x1f the ccan JSON parser becomes self-incompatible, since \u001f gets serialized to 0x1f, but 0x1f can not be parsed by the JSON parser (which is in accordance with the JSON specs).
The text was updated successfully, but these errors were encountered: