blobmsg_json: fix \u escaping for control characters
authorFelix Fietkau <nbd@openwrt.org>
Fri, 21 Jun 2013 15:06:34 +0000 (17:06 +0200)
committerFelix Fietkau <nbd@openwrt.org>
Fri, 21 Jun 2013 15:06:34 +0000 (17:06 +0200)
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
blobmsg_json.c

index 7a4ab7b..7e6fca4 100644 (file)
@@ -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;
                }