- 29 5月, 2016 5 次提交
-
-
由 Dave Gamble 提交于
-
由 Dave Gamble 提交于
Fix compiler div-by-0 error when it encountered 1.0/0.0
-
由 Dave Gamble 提交于
-
由 Dave Gamble 提交于
-
由 Dave Gamble 提交于
-
- 23 4月, 2016 1 次提交
-
-
由 Irwan Djajadi 提交于
with division by 0. Tricked the compiler to use volatile local variable zero instead, so it does not know for sure whether or not it's going to be zero.
-
- 20 3月, 2016 5 次提交
-
-
由 Dave Gamble 提交于
-
由 Dave Gamble 提交于
to cJSON_ParseWithOpts, then that will store the error pointer (if parsing fails).
-
由 Dave Gamble 提交于
-
由 Dave Gamble 提交于
-
由 Dave Gamble 提交于
thanks to kolman and Irwan Djajadi on SourceForge.
-
- 07 3月, 2016 2 次提交
-
-
由 Kevin Branigan 提交于
Using values in powers of two for cJSON_* constants
-
由 Kevin Branigan 提交于
fixed segmentation fault for non-json input / provided test case
-
- 06 3月, 2016 1 次提交
-
-
由 Christian Schulze 提交于
-
- 17 2月, 2016 1 次提交
-
-
由 Kevin Branigan 提交于
Publish the libraries and headers to the right directories during 'make install'.
-
- 15 2月, 2016 2 次提交
-
-
由 Weston Schmidt 提交于
-
由 Weston Schmidt 提交于
-
- 12 2月, 2016 1 次提交
-
-
由 Kevin Branigan 提交于
Added uninstall rule to Makefile
-
- 11 2月, 2016 1 次提交
-
-
由 Eswar Yaganti 提交于
-
- 10 2月, 2016 3 次提交
-
-
-
由 Eswar Yaganti 提交于
We can use bitops to check if the parsed JSON is of a particular types using OR
-
由 Eswar Yaganti 提交于
We can use bitops to check if the parsed JSON is of a particular types using OR
-
- 26 10月, 2015 4 次提交
-
-
由 Kevin Branigan 提交于
Fix printing of empty string pointers
-
由 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) ...
-
由 Kevin Branigan 提交于
Fix format problem with empty objects
-
由 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": { } } }
-
- 19 10月, 2015 3 次提交
-
-
由 Kevin Branigan 提交于
fix boolean expression
-
由 Kevin Branigan 提交于
fix memory leaks
-
由 Kevin Branigan 提交于
Remove line that will never be executed
-
- 16 10月, 2015 1 次提交
-
-
由 Max Bruckner 提交于
-
- 14 10月, 2015 2 次提交
-
-
由 Max Bruckner 提交于
-
由 Max Bruckner 提交于
This expression was always false.
-
- 06 10月, 2015 1 次提交
-
-
由 Kevin Branigan 提交于
-
- 02 10月, 2015 1 次提交
-
-
由 Kevin Branigan 提交于
-
- 01 10月, 2015 5 次提交
-
-
由 Kevin Branigan 提交于
README.md: fixed formatting
-
由 Kevin Branigan 提交于
add new macro for iterating over an array
-
由 Kevin Branigan 提交于
added cJSON_HasObjectItem
-
由 Kevin Branigan 提交于
Handle invalid numbers
-
由 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.
-
- 26 9月, 2015 1 次提交
-
-
由 IvanVoid 提交于
-