--- libelwix/src/json.c 2019/09/24 15:49:52 1.8 +++ libelwix/src/json.c 2020/08/22 01:18:55 1.8.10.1 @@ -3,7 +3,7 @@ * by Michael Pounov * * $Author: misho $ -* $Id: json.c,v 1.8 2019/09/24 15:49:52 misho Exp $ +* $Id: json.c,v 1.8.10.1 2020/08/22 01:18:55 misho Exp $ * ************************************************************************** The ELWIX and AITNET software is distributed under the following @@ -567,7 +567,7 @@ json_findbykey(const char *jstr, const char *key, jtyp klen = strlen(key); for (i = 1; i < toksnum; i++) { - if (toks[i].tok_type == J_STRING && + if (toks[i].tok_type == J_STRING && toks[i].tok_size == 1 && klen == toks[i].tok_end - toks[i].tok_start && !strncmp(jstr + toks[i].tok_start, key, klen)) { if (type != J_UNDEF) {