From 410802e106184d15805c5a66830d3072bd58ce30 Mon Sep 17 00:00:00 2001 From: Luka Perkov Date: Mon, 11 May 2015 23:28:19 +0200 Subject: [PATCH] file: be consistent with string termination character Signed-off-by: Luka Perkov --- file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file.c b/file.c index 4920f50..d983518 100644 --- a/file.c +++ b/file.c @@ -247,7 +247,7 @@ rpc_file_read(struct ubus_context *ctx, struct ubus_object *obj, } } - *(wbuf + len) = 0; + *(wbuf + len) = '\0'; blobmsg_add_string_buffer(&buf); ubus_send_reply(ctx, req, buf.head); -- 2.11.0