mirror of https://github.com/akheron/jansson
Amend the fix for issue #282
The previous fix did not properly update cmake and Android builds.
This commit is contained in:
parent
2e74e05370
commit
e62bce8761
|
@ -36,4 +36,8 @@
|
|||
otherwise to 0. */
|
||||
#define JSON_HAVE_LOCALECONV 0
|
||||
|
||||
/* Maximum recursion depth for parsing JSON input.
|
||||
This limits the depth of e.g. array-within-array constructions. */
|
||||
#define JSON_PARSER_MAX_DEPTH 16384
|
||||
|
||||
#endif
|
||||
|
|
|
@ -60,5 +60,9 @@
|
|||
#define JSON_HAVE_LOCALECONV @JSON_HAVE_LOCALECONV@
|
||||
|
||||
|
||||
/* Maximum recursion depth for parsing JSON input.
|
||||
This limits the depth of e.g. array-within-array constructions. */
|
||||
#define JSON_PARSER_MAX_DEPTH 16384
|
||||
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue