summaryrefslogtreecommitdiff
path: root/json_tokener.c
Commit message (Expand)AuthorAgeFilesLines
* Remove unused variable 'size'Petar Koretić2015-01-271-2/+0
* Patch to address the following issues:Michael Clark2014-04-091-0/+11
* Make the json_tokener_errors array local. It has been deprecated for a while...Eric Haszlakiewicz2014-03-221-2/+1
* Issue #103: allow Infinity and -Infinity to be parsed.Eric Haszlakiewicz2014-03-221-1/+51
* nan function requires -lm on some platforms; use of NAN is better, if available.Markus Stenberg2014-03-181-1/+6
* Issue#102 - add support for parsing "NaN".Eric Haszlakiewicz2014-03-091-10/+31
* Merge pull request #112 from TazeTSchnitzel/LowercaseLiteralsEric Haszlakiewicz2014-02-111-32/+46
|\
| * Only allow lowercase literals in STRICT modeAndrea Faulds2013-11-141-32/+46
* | Fix Issue #111: Fix off-by-one error when range checking the input to json_to...Eric Haszlakiewicz2014-02-111-1/+1
|/
* Added a json_object_new_double_s() convenience function to allow an exact str...Eric Haszlakiewicz2013-09-111-2/+4
* Merge pull request #96 from rouault/remove_strdnupEric Haszlakiewicz2013-09-081-23/+0
|\
| * Remove redefinition of strndup() which is no longer used in the codebaseEven Rouault2013-08-121-23/+0
* | Merge pull request #94 from remicollet/issue-strict2Eric Haszlakiewicz2013-09-081-2/+14
|\ \
| * | trailing char not allowed in strict modeRemi Collet2013-08-231-0/+7
| * | no comment in strict modeRemi Collet2013-08-211-1/+1
| * | no single-quote string in strict modeRemi Collet2013-08-061-1/+6
| |/
* | Fix potential out-of-bounds read in json_tokener_error_descEven Rouault2013-09-081-1/+1
|/
* Minor spell check.Eric Haszlakiewicz2013-06-191-1/+1
* in strick mode, number must not start with 0Remi Collet2013-06-131-0/+5
* Issue #15: add a way to set a JSON_TOKENER_STRICT flag to forbid commas at th...Eric Haszlakiewicz2013-03-311-2/+21
* Fix broken build by using ADVANCE_CHAR macro return.William Dignazio2013-03-061-3/+7
* Rename misnomer POP_CHAR to PEEK_CHAR.William Dignazio2013-03-061-18/+18
* Merge branch 'remicollet-issue-float'Eric Haszlakiewicz2013-02-261-1/+17
|\
| * move locale change to be global for perfRemi Collet2012-12-131-0/+16
| * float parsing must be locale independentRemi Collet2012-11-271-1/+1
* | Enable -Werror and fix a number of minor warnings that existed.Eric Haszlakiewicz2013-02-091-8/+9
* | Merge pull request #51 from remicollet/issue-dyndepthEric Haszlakiewicz2012-12-231-5/+16
|\ \
| * | Make maximum recursion depth a runtime optionRemi Collet2012-11-271-5/+16
| |/
* | Fix issue #53 - ensure explicit length string are still NUL terminated, and f...Eric Haszlakiewicz2012-12-091-1/+1
|/
* Handle the \f escape sequence (the two characters: backslash followed by an f...Eric Haszlakiewicz2012-07-291-0/+2
* Replaced #if HAVE_X with #ifdef HAVE_X as the former test is troublemaker wit...Mateusz Loskot2012-05-211-1/+7
* Fixed parsing numbers in E notation. `Eric Haszlakiewicz2012-04-241-1/+2
* Fix a bug in json_tokener_parse_ex when re-using the same tokener to parse mu...Eric Haszlakiewicz2012-03-311-1/+11
* Perform better error checking in json_tokener_parse_verbose and rewrite json_...Eric Haszlakiewicz2012-03-311-12/+9
* Add json_tokener_get_error() and json_tokener_error_desc() to better encapsul...Eric Haszlakiewicz2012-02-221-0/+13
* json_tokener_parse(): avoid possible NULL derefFrederik Deweerdt2012-01-181-0/+2
* add json_tokener_parse_verbose, and return NULL on parser errorsJehiah Czebotar2010-12-081-1/+17
* Simplify things by storing integer values only as int64_t's internally, andehaszla2010-12-071-12/+2
* * Add int64 support. Two new functions json_object_net_int64 andMichael Clark2010-10-061-6/+18
* * Add handling of surrogate pairsBrent Miller2009-08-201-19/+83
* * Rename min and max so we can never clash with C or C++ std libraryMichael Clark2009-07-251-4/+4
* Add const qualifier to the json_tokener_parse functionsChristopher Watford2009-07-081-7/+7
* Erik Hovland (3):Christopher Watford2009-07-081-0/+1
* optimizations to json_tokener_parse_ex(), printbuf_memappend()Michael Clark2009-04-271-92/+197
* * Don't use this as a variable, so we can compile with a C++ compilerMichael Clark2009-02-251-2/+4
* * Null pointer dereference fix. Fix json_object_get_boolean strlen testMichael Clark2009-02-251-0/+3
* * Fixed warning reported by adding -Wstrict-prototypesMichael Clark2009-02-251-1/+1
* * Fix bug with use of capital E in numbers with exponentsMichael Clark2007-12-071-1/+2
* * Add macros to enable compiling out debug codeMichael Clark2007-10-251-3/+3
* * Add escaping of backslash to json outputMichael Clark2007-03-131-177/+228