1f970e7db3
fix double comparison
2019-12-06 17:11:12 +08:00
446ff0d6cc
fix issue#327
2019-11-28 09:56:04 +08:00
166c814cda
eliminate warning when compiling cJSON
2019-08-12 17:06:29 +08:00
08d2bc766a
Fix infinite loop in cJSON_Minify
2019-05-16 20:01:02 +02:00
19ff92da79
Add link dependency to fix tests link error when ENABLE_CJSON_UTILS is ON
2019-05-11 07:37:33 +08:00
a43fa56a63
Rewrite cJSON_Minify, fixing buffer overflows, fixes #338
...
Also first tests for cJSON_Minify.
Thanks @bigric3 for reporting
2019-04-14 23:18:48 +02:00
be749d7efa
Fix crash of cJSON_GetObjectItemCaseSensitive when calling it on arrays
2018-12-16 11:06:40 +01:00
543ab5d08a
Update json-patch-tests
2018-10-11 00:30:43 +02:00
d9fe34bade
Add newline to end of unity_setup.c
2018-09-17 09:10:20 -05:00
f25b8448e4
Support default __stdcall calling convention on tests as well
2018-09-12 15:32:30 -05:00
ad2cb5b7ea
Enable build and test on Windows
2018-09-04 14:36:21 -05:00
d26a42af8d
json patch: adding to a subfield of a non-object now fails as expected
2018-03-22 11:10:29 -04:00
22a7d04fa0
add_item_to_object: Fix use-after-free when string is aliased
...
If the `string` property of the item that is added is an alias to the
`string` parameter of `add_item_to_object`, and `constant` is false,
`cJSON_strdup` would access the string after it has been freed.
Thanks @hhallen for reporting this in #248 .
2018-03-02 19:49:55 +01:00
e7d0c1dc37
Tests: Test if the readme examples are working
2017-12-31 01:35:09 +01:00
77931e7fc0
cJSON_Add...ToObject: Add tests for failure conditions
2017-12-29 23:26:53 +01:00
5865faffa3
Convert cJSON_Add...ToObject macros into functions
...
These functions return the added object. Functions to add objects and
arrays have also been added.
2017-12-28 23:56:39 +01:00
f966409b33
Add tests for cJSON_Add...ToObject macros
2017-12-28 22:56:57 +01:00
2a087843e4
Add overrides for BUILD_SHARED_LIBS
2017-11-28 17:16:11 +01:00
eb7c681a4b
Fix tests when building as static library
2017-11-28 16:44:24 +01:00
0476590a0c
Update Unity to 2.4.3
2017-11-28 03:15:50 +01:00
11844dd5a6
Add cJSON_Create{Array,Object}Reference
2017-11-28 03:06:02 +01:00
eaa90a6b74
Add cJSON_CreateStringReference
2017-11-28 02:02:55 +01:00
043507872e
Update json-patch-tests
2017-11-20 22:04:57 +01:00
b2afbd3c9f
cJSON_GetStringValue
2017-11-15 18:47:49 +01:00
fa00278f66
Remove trailing space
2017-11-04 21:19:15 +08:00
97d7347a6e
Merge branch 'develop'
2017-10-08 22:05:02 +02:00
acf80470f8
Update Unity to version v2.4.2
...
Merge commit 'b7bfe1e91a0b55d72f849944d5a33b7962d7bf51' into develop
2017-09-12 18:30:07 +02:00
d92754cd30
Add valgrind suppressions for ARMv7
2017-09-08 13:25:14 +02:00
629c354390
Rewrite test for cJSON_ParseWithOpts() to expect non-null error
...
pointer in error case and change code to match new expectations.
2017-09-08 01:22:10 +01:00
1b2236a9a6
Improve existing tests showing behaviour of Parse and ParseWithOpts functions.
2017-09-08 01:20:52 +01:00
469a437e2a
Add valgrind suppressions for ARVMv7 ArchlinuxARM
2017-07-15 11:59:47 +02:00
954d61e5e7
Fix #189 , ensure returns an invalid pointer
...
If realloc returns NULL, ensure didn't abort but returned
printbuffer.offset instead. If an attacker can control
printbuffer.offset and also make realloc fail at just the right moment,
this would make cJSON potentially write at an arbitrary memory address.
2017-07-12 23:02:31 +02:00
5baa77f86c
cJSON_Parse{,WithOpts}: Skip UTF-8 (Byte Order Marks)
2017-07-03 22:28:04 +02:00
45e1278acb
tests/print_number: Add test with 17 digits of precision
2017-06-28 17:28:50 +02:00
21733eb02e
tests/print_number: Use proper double literals
2017-06-28 17:28:49 +02:00
a9ce4e6bbc
Add warning -Wswitch-enum
2017-06-28 17:28:49 +02:00
4e0c119391
Add warning -Wmissing-variable-declarations
2017-06-28 17:28:49 +02:00
18ad8a8770
misc_utils_tests: call all utils function with NULL pointers
2017-06-28 16:01:20 +02:00
bdd5ff7ad6
misc_tests: Call all functions with NULL pointers
2017-06-28 14:22:42 +02:00
03ba72faec
cJSON_Compare: Fix comparison of objects
...
It did consider two arrays equal if one is a subset of te other one,
which is incorrect.
See #180
2017-06-14 17:48:56 +02:00
569aa060c6
cJSON_Compare: Fix comparison of arrays
...
It did consider two arrays equal if one is a prefix of the other one,
which is incorrect.
See #180
2017-06-14 17:48:56 +02:00
bfbd8fe0d8
tests/parse_hex4: Fix GCC 7 compiler warning ( fixes #179 )
2017-06-04 21:29:14 +02:00
82295f9e4f
Update Unity
2017-06-04 19:36:46 +02:00
9ecc96878f
fix #174 : cJSON_ReplaceItemInObject doesn't copy name
2017-05-22 22:55:05 +02:00
b537ca70a3
old_utils_tests: Remove leftover unused attribute
2017-05-10 01:15:28 +02:00
a01267c0a4
Update json-patch-tests
2017-05-02 01:56:12 +02:00
e1f6470dae
json_patch_tests.c: Use case sensitive functions
2017-05-02 01:54:49 +02:00
8b953d1202
Add cJSON_ReplaceItemViaPointer
2017-05-02 01:18:55 +02:00
c24c3e0285
Add cJSON_DetachItemViaPointer
2017-05-01 23:58:04 +02:00
b00ecfd311
Merge commit '48b390994642e59eb1a461922a646b4c6544693c' into develop
2017-05-01 18:02:03 +02:00