From: Felix Fietkau Date: Fri, 21 Jun 2013 15:06:34 +0000 (+0200) Subject: blobmsg_json: fix \u escaping for control characters X-Git-Url: http://git.archive.openwrt.org/?p=project%2Flibubox.git;a=commitdiff_plain;h=7c5d2b30815b5ff0b6bce35c1e486b3c17cce55b blobmsg_json: fix \u escaping for control characters Signed-off-by: Felix Fietkau --- diff --git a/blobmsg_json.c b/blobmsg_json.c index 7a4ab7b..7e6fca4 100644 --- a/blobmsg_json.c +++ b/blobmsg_json.c @@ -193,7 +193,7 @@ static void blobmsg_format_string(struct strbuf *s, const char *str) if (escape == 'u') { sprintf(buf + 4, "%02x", (unsigned char) *p); - len = 4; + len = 6; } else { len = 2; }