Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYousong Zhou <yszhou4tech@gmail.com>2019-02-27 05:48:47 +0300
committerYousong Zhou <yszhou4tech@gmail.com>2019-02-27 05:50:02 +0300
commiteeef7b50a06bc3c3218d560b4b513b4e7b19127f (patch)
tree35d1ec2e892331439f9c0f942c6b4f00cffe384f /blobmsg_json.c
parentc83a84afbef2b24f960ddeda0b5e2ab01fba6981 (diff)
blobmsg_json: blobmsg_format_string: do not escape '/'
Resolves FS#2147 Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
Diffstat (limited to 'blobmsg_json.c')
-rw-r--r--blobmsg_json.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/blobmsg_json.c b/blobmsg_json.c
index ca9dd1a..59a4b31 100644
--- a/blobmsg_json.c
+++ b/blobmsg_json.c
@@ -185,7 +185,6 @@ static void blobmsg_format_string(struct strbuf *s, const char *str)
break;
case '"':
case '\\':
- case '/':
escape = *p;
break;
default: