summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/MirLua/Modules/JSON/src/json.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/MirLua/Modules/JSON/src/json.c b/plugins/MirLua/Modules/JSON/src/json.c
index 165780488f..8818e0d7fe 100644
--- a/plugins/MirLua/Modules/JSON/src/json.c
+++ b/plugins/MirLua/Modules/JSON/src/json.c
@@ -230,14 +230,14 @@ decode_string(lua_State *L, char **s)
break;
case 'u':
code2utf8(L, (unsigned char *)(*s) + 2, utfbuf);
- size_t len = strlen(utfbuf);
+ size_t tmplen = strlen(utfbuf);
strcpy(newc, utfbuf);
- newc += len;
+ newc += tmplen;
(*s) += 6;
break;
-/* default:
+ default:
json_error(L, "invalid escape character");
- break;*/
+ break;
}
}
else if (nextEscape != NULL) {