Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-03-03 | Merge pull request #168 from bugness-chl/masterHEADmaster | Eric Haszlakiewicz | 3 | -2/+62 | |
Tightening the number parsing algorithm | |||||
2015-03-03 | Merge pull request #163 from sixlettervariables/fix-win32-build-problems | Eric Haszlakiewicz | 6 | -31/+322 | |
Fix Win32 build problems | |||||
2015-03-03 | Merge pull request #144 from mhei/master | Eric Haszlakiewicz | 2 | -11/+27 | |
Introduce json_object_from_fd | |||||
2015-03-04 | Slight style tweaks to the bsearch changest. | Eric Haszlakiewicz | 4 | -14/+12 | |
2015-03-03 | Merge pull request #155 from LeSpocky/bsearch | Eric Haszlakiewicz | 4 | -2/+49 | |
add bsearch for arrays | |||||
2015-03-03 | Merge pull request #156 from jubalh/master | Eric Haszlakiewicz | 10 | -37/+37 | |
Remove trailing whitespaces | |||||
2015-02-05 | Tightening the number parsing algorithm | chl | 3 | -2/+62 | |
Some badly formated "numbers" could get partly parsed, resulting in truncated results instead of raising an error. Examples : '1.2.3' -> (double)1.2 '2015-01-15' -> (int)2015 This patch is not perfect (ex: input can still end with a 'E', which is forbidden by json.org doc) but should avoid non-sensically formated input. Tests added. | |||||
2014-12-05 | Adds json_config.h.win32 to project. Adds VS2k13 project. | Christopher Watford | 3 | -2/+205 | |
2014-12-05 | Fixes #160 'missing header file on windows' | Christopher Watford | 3 | -29/+117 | |
2014-09-13 | Merge pull request #153 from LeSpocky/doc | Eric Haszlakiewicz | 1 | -0/+5 | |
improve doc for json_object_to_json_string() | |||||
2014-09-13 | Merge pull request #151 from mjchinn/json_type-comma | Eric Haszlakiewicz | 1 | -3/+3 | |
Remove json_type enum trailing comma | |||||
2014-09-13 | Merge pull request #150 from ams-cs/master | Eric Haszlakiewicz | 1 | -0/+3 | |
Fix build using MinGW. | |||||
2014-09-13 | Merge pull request #141 from AlexandruCostache/master | Eric Haszlakiewicz | 1 | -5/+2 | |
Removed duplicate check in random_seed test - bug #140 | |||||
2014-08-26 | Remove trailing whitespace | Michael Vetter | 10 | -37/+37 | |
2014-08-21 | add bsearch for arrays | Alexander Dahl | 4 | -2/+49 | |
Arrays can already be sorted with json_object_array_sort() which uses qsort() of the standard C library. This adds a counterpart using the bsearch() from C. | |||||
2014-08-18 | improve doc for json_object_to_json_string() | Alexander Dahl | 1 | -0/+5 | |
2014-08-10 | Remove json_type enum trailing comma | Michael J. Chinn | 1 | -3/+3 | |
2014-08-04 | Fix build using MinGW. | Andrew Stubbs | 1 | -0/+3 | |
MinGW requires wincrypt.h. GCC does not support #pragma comment, which trips Werror. | |||||
2014-07-21 | Introduce json_object_from_fd | Michael Heimpold | 2 | -11/+27 | |
Also refactor json_object_from_file to use json_object_from_fd internally. Signed-off-by: Michael Heimpold <mhei@heimpold.de> | |||||
2014-07-04 | Removed duplicate check in random_seed test - bug #140 | Alexandru Costache | 1 | -5/+2 | |
2014-05-04 | Move the json_min() and json_max() macros to json_util.h and mark everything ↵ | Eric Haszlakiewicz | 7 | -17/+34 | |
else in bits.h deprecated. Eliminate all uses of bits.h within the json-c code. | |||||
2014-05-03 | Fix the definition of the error_description() macro in bits.h now that ↵ | Eric Haszlakiewicz | 1 | -1/+1 | |
json_tokener_errors[] is not exported. | |||||
2014-04-19 | Check for failures when allocating memory; return NULL and set errno=ENOMEM ↵ | Eric Haszlakiewicz | 1 | -1/+26 | |
in a few of those cases. Thanks to Susant Sahani for pointing out some of these. | |||||
2014-04-19 | Reformat some code in json_object.c | Eric Haszlakiewicz | 1 | -198/+231 | |
2014-04-19 | Add an empty README file to placate autoconf. | Eric Haszlakiewicz | 1 | -0/+0 | |
2014-04-19 | Fix minor typo in README file. | Eric Haszlakiewicz | 1 | -1/+1 | |
2014-04-19 | Merge pull request #133 from haneefmubarak/patch-1 | Eric Haszlakiewicz | 2 | -45/+63 | |
Update and rename README to README.md | |||||
2014-04-19 | Merge pull request #132 from pkoretic/master | Eric Haszlakiewicz | 1 | -2/+0 | |
Remove unused variable 'size' | |||||
2014-04-12 | Update README.md | Haneef Mubarak | 1 | -13/+14 | |
- code blocks - slight text changes (rewording) - pretty printing | |||||
2014-04-12 | Update and rename README to README.md | Haneef Mubarak | 2 | -45/+62 | |
Markdownify + fix a few errors here and there | |||||
2014-04-11 | Update the release checklist to include calculating the tarball checksums ↵ | Eric Haszlakiewicz | 1 | -0/+15 | |
and updating the wiki. | |||||
2014-04-11 | Remove unused variable 'size' | Petar Koretić | 1 | -2/+0 | |
2014-04-10 | Bump versions up to 0.12.99 since a 0.12 release was just created. | Eric Haszlakiewicz | 5 | -6/+10 | |
2014-04-10 | Update the ChangeLog with the changes for the 0.12 release.b2g-0.12 | Eric Haszlakiewicz | 2 | -2/+34 | |
Bump the version in the release checklist. | |||||
2014-04-09 | Patch to address the following issues: | Michael Clark | 11 | -13/+691 | |
* CVE-2013-6371: hash collision denial of service * CVE-2013-6370: buffer overflow if size_t is larger than int | |||||
2014-03-22 | Eliminate the deprecated mc_abort() function and MC_ABORT macro. | Eric Haszlakiewicz | 2 | -23/+0 | |
2014-03-22 | Make the json_tokener_errors array local. It has been deprecated for a ↵ | Eric Haszlakiewicz | 2 | -10/+1 | |
while, and json_tokener_error_desc() should be used instead. | |||||
2014-03-22 | Simplify the tests Makefile to avoid repeating the name of each test. | Eric Haszlakiewicz | 2 | -18/+20 | |
2014-03-22 | Rename the "test_case" test to "test_charcase" to make it slightly less ↵ | Eric Haszlakiewicz | 5 | -27/+5 | |
confusing. | |||||
2014-03-22 | Fix warnings from autoconf about "...no AC_LANG_SOURCE call detected..." by ↵ | Eric Haszlakiewicz | 1 | -2/+2 | |
adding that call within the AC_LINK_IFELSE call. | |||||
2014-03-22 | Issue #103: allow Infinity and -Infinity to be parsed. | Eric Haszlakiewicz | 7 | -2/+97 | |
2014-03-22 | Merge pull request #123 from fingon/use-NAN-if-available | Eric Haszlakiewicz | 1 | -1/+6 | |
nan function requires -lm on some platforms - use of NAN is better, if available | |||||
2014-03-18 | nan function requires -lm on some platforms; use of NAN is better, if available. | Markus Stenberg | 1 | -1/+6 | |
2014-03-09 | Issue#102 - add support for parsing "NaN". | Eric Haszlakiewicz | 6 | -10/+44 | |
2014-03-02 | Issue#114: check for the presence of isnan and isinf, and provide compat ↵ | Eric Haszlakiewicz | 4 | -1/+42 | |
macros on MSCV where _isnan and _finite exist instead. | |||||
2014-02-12 | Merge pull request #121 from TazeTSchnitzel/LowercaseLiterals | Eric Haszlakiewicz | 3 | -0/+53 | |
Missing lowercase literals test | |||||
2014-02-12 | Merge branch 'master' into LowercaseLiterals | Andrea Faulds | 3 | -0/+53 | |
2014-02-12 | Missing tests | Andrea Faulds | 3 | -0/+53 | |
2014-02-11 | Merge commit '89535bb' | Eric Haszlakiewicz | 1 | -0/+1 | |
2014-02-11 | Merge pull request #112 from TazeTSchnitzel/LowercaseLiterals | Eric Haszlakiewicz | 2 | -33/+50 | |
Only allow lowercase literals in STRICT mode |