mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
ci: fix clang sanitize errors for json_decode
This commit is contained in:
5
thirdparty/cJSON/cJSON.c
vendored
5
thirdparty/cJSON/cJSON.c
vendored
@ -74,6 +74,11 @@ typedef struct {
|
||||
} error;
|
||||
static error global_error = { NULL, 0 };
|
||||
|
||||
CJSON_PUBLIC(size_t) cJSON_GetErrorPos(void)
|
||||
{
|
||||
return global_error.position;
|
||||
}
|
||||
|
||||
CJSON_PUBLIC(const char *) cJSON_GetErrorPtr(void)
|
||||
{
|
||||
return (const char*) (global_error.json + global_error.position);
|
||||
|
1
thirdparty/cJSON/cJSON.h
vendored
1
thirdparty/cJSON/cJSON.h
vendored
@ -172,6 +172,7 @@ CJSON_PUBLIC(cJSON *) cJSON_GetObjectItemCaseSensitive(const cJSON * const objec
|
||||
CJSON_PUBLIC(cJSON_bool) cJSON_HasObjectItem(const cJSON *object, const char *string);
|
||||
/* For analysing failed parses. This returns a pointer to the parse error. You'll probably need to look a few chars back to make sense of it. Defined when cJSON_Parse() returns 0. 0 when cJSON_Parse() succeeds. */
|
||||
CJSON_PUBLIC(const char *) cJSON_GetErrorPtr(void);
|
||||
CJSON_PUBLIC(size_t) cJSON_GetErrorPos(void);
|
||||
|
||||
/* Check if the item is a string and return its valuestring */
|
||||
CJSON_PUBLIC(char *) cJSON_GetStringValue(cJSON *item);
|
||||
|
Reference in New Issue
Block a user