version 1.9, 2021/03/21 01:32:04
|
version 1.9.34.2, 2024/10/26 14:56:14
|
Line 12 terms:
|
Line 12 terms:
|
All of the documentation and software included in the ELWIX and AITNET |
All of the documentation and software included in the ELWIX and AITNET |
Releases is copyrighted by ELWIX - Sofia/Bulgaria <info@elwix.org> |
Releases is copyrighted by ELWIX - Sofia/Bulgaria <info@elwix.org> |
|
|
Copyright 2004 - 2019 | Copyright 2004 - 2024 |
by Michael Pounov <misho@elwix.org>. All rights reserved. |
by Michael Pounov <misho@elwix.org>. All rights reserved. |
|
|
Redistribution and use in source and binary forms, with or without |
Redistribution and use in source and binary forms, with or without |
Line 427 json_token2val(const char *jstr, jtok_t * __restrict t
|
Line 427 json_token2val(const char *jstr, jtok_t * __restrict t
|
return NULL; |
return NULL; |
|
|
AIT_SET_STRSIZ(v, json_toklen(tok)); |
AIT_SET_STRSIZ(v, json_toklen(tok)); |
strncpy(AIT_GET_STR(v), json_tokstr(jstr, tok), AIT_LEN(v) - 1); | if (AIT_GET_STR(v)) |
| strncpy(AIT_GET_STR(v), json_tokstr(jstr, tok), AIT_LEN(v) - 1); |
| else |
| ait_freeVar(&v); |
|
|
return v; |
return v; |
} |
} |