Changeset b86f37d for lib/json.c
- Timestamp:
- 2022-08-22T14:48:16Z (2 years ago)
- Branches:
- master
- Children:
- e9eee04
- Parents:
- b9572c1
- git-author:
- Petr Vaněk <arkamar@…> (29-07-22 12:32:01)
- git-committer:
- Jelmer Vernooij <jelmer@…> (22-08-22 14:48:16)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lib/json.c
rb9572c1 rb86f37d 140 140 } 141 141 142 value->_reserved.object_mem = ( *(char **) &value->u.object.values) + values_size;142 value->_reserved.object_mem = (void *) (((char *) value->u.object.values) + values_size); 143 143 144 144 value->u.object.length = 0; … … 407 407 408 408 if (state.first_pass) { 409 (*(json_char **) &top->u.object.values) += string_length + 1; 409 json_char **chars = (json_char **) &top->u.object.values; 410 chars[0] += string_length + 1; 410 411 } else { 411 412 top->u.object.values [top->u.object.length].name
Note: See TracChangeset
for help on using the changeset viewer.