Merge pull request #309 from halfaleague/larger-json-buffers

Allow parsing of buffers larger than 2GB on most 64 bit arch.
This commit is contained in:
Petri Lehtinen 2016-10-24 21:42:30 +03:00 committed by GitHub
commit 0cac862bbc

View file

@ -914,7 +914,7 @@ static json_t *parse_json(lex_t *lex, size_t flags, json_error_t *error)
typedef struct
{
const char *data;
int pos;
size_t pos;
} string_data_t;
static int string_get(void *data)