sheredom / json.h

🗄️ single header json parser for C and C++
The Unlicense
698 stars 77 forks source link

Fix buffer overflow in string parsing. #70

Closed sheredom closed 4 years ago

sheredom commented 4 years ago

Basically I never checked post string parsing if we hit the end of file, because if we did it'd mean we didn't actually successfully parse a string.

Fixes #69.