- 02 10月, 2016 19 次提交
-
-
由 Max Bruckner 提交于
-
由 Max Bruckner 提交于
-
由 Max Bruckner 提交于
-
由 Max Bruckner 提交于
-
由 Max Bruckner 提交于
-
由 Max Bruckner 提交于
-
由 Max Bruckner 提交于
-
由 Max Bruckner 提交于
-
由 Max Bruckner 提交于
-
由 Max Bruckner 提交于
-
由 Max Bruckner 提交于
-
由 Max Bruckner 提交于
-
由 Max Bruckner 提交于
-
由 Max Bruckner 提交于
-
由 Max Bruckner 提交于
-
由 Max Bruckner 提交于
-
由 Max Bruckner 提交于
-
由 Max Bruckner 提交于
-
由 Max Bruckner 提交于
-
- 29 5月, 2016 2 次提交
-
-
由 Dave Gamble 提交于
-
由 Dave Gamble 提交于
-
- 20 3月, 2016 4 次提交
-
-
由 Dave Gamble 提交于
-
由 Dave Gamble 提交于
to cJSON_ParseWithOpts, then that will store the error pointer (if parsing fails).
-
由 Dave Gamble 提交于
-
由 Dave Gamble 提交于
thanks to kolman and Irwan Djajadi on SourceForge.
-
- 06 3月, 2016 1 次提交
-
-
由 Christian Schulze 提交于
-
- 26 10月, 2015 2 次提交
-
-
由 Max Bruckner 提交于
Once the check if str is NULL is reached, str has already been derereferenced in the for loop, so in the case that the if clause would be entered, the program has already crashed due to a null pointer dereference. By checking the content of str before dereferencing, the code in the if clause is actually useful. for (ptr=str;*ptr;ptr++) flag|=((*ptr>0 && *ptr<32)||(*ptr=='\"')||(*ptr=='\\'))?1:0; ... if (!str) ...
-
由 Max Bruckner 提交于
When printing empty objects, the closing curly brace was missing one indentation level. Example from the output of test_utils: BEFORE FIX: { "foo": "bar", "child": { "grandchild": { } } } AFTER FIX: { "foo": "bar", "child": { "grandchild": { } } }
-
- 16 10月, 2015 1 次提交
-
-
由 Max Bruckner 提交于
-
- 02 10月, 2015 1 次提交
-
-
由 Kevin Branigan 提交于
-
- 01 10月, 2015 1 次提交
-
-
由 Linus Wallgren 提交于
Previously cJSON generated invalid JSON when a number was infinite or similar. This patch changes the behaviour to match javascript, that is to render such a number as null.
-
- 15 9月, 2015 1 次提交
-
-
由 Roland Meertens 提交于
-
- 15 6月, 2015 1 次提交
-
-
由 DongwenHuang 提交于
-
- 14 2月, 2015 1 次提交
-
-
由 Dave Gamble 提交于
git-svn-id: svn://svn.code.sf.net/p/cjson/code@69 e3330c51-1366-4df0-8b21-3ccf24e3d50e
-
- 11 2月, 2015 2 次提交
-
-
由 Dave Gamble 提交于
git-svn-id: svn://svn.code.sf.net/p/cjson/code@68 e3330c51-1366-4df0-8b21-3ccf24e3d50e
-
由 Dave Gamble 提交于
git-svn-id: svn://svn.code.sf.net/p/cjson/code@67 e3330c51-1366-4df0-8b21-3ccf24e3d50e
-
- 10 2月, 2015 4 次提交
-
-
由 Dave Gamble 提交于
start of JSON Patch implementation. cJSON gained a cJSON_InsertItemToArray which pushes elements up by one. This is needed for JSON Patch. Everything but Test is implemented for ApplyPatches. git-svn-id: svn://svn.code.sf.net/p/cjson/code@65 e3330c51-1366-4df0-8b21-3ccf24e3d50e
-
由 Dave Gamble 提交于
git-svn-id: svn://svn.code.sf.net/p/cjson/code@62 e3330c51-1366-4df0-8b21-3ccf24e3d50e
-
由 Dave Gamble 提交于
git-svn-id: svn://svn.code.sf.net/p/cjson/code@61 e3330c51-1366-4df0-8b21-3ccf24e3d50e
-
由 Dave Gamble 提交于
git-svn-id: svn://svn.code.sf.net/p/cjson/code@60 e3330c51-1366-4df0-8b21-3ccf24e3d50e
-