file: use blob_buf_free()

Signed-off-by: Luka Perkov <luka@openwrt.org>
This commit is contained in:
Luka Perkov 2015-03-10 18:00:02 +01:00 committed by John Crispin
parent e2d37b7e40
commit b65f6a844f

4
file.c
View file

@ -199,6 +199,7 @@ rpc_file_read(struct ubus_context *ctx, struct ubus_object *obj,
blobmsg_add_string_buffer(&buf); blobmsg_add_string_buffer(&buf);
ubus_send_reply(ctx, req, buf.head); ubus_send_reply(ctx, req, buf.head);
blob_buf_free(&buf);
rv = UBUS_STATUS_OK; rv = UBUS_STATUS_OK;
out: out:
@ -268,6 +269,7 @@ rpc_file_list(struct ubus_context *ctx, struct ubus_object *obj,
blobmsg_close_array(&buf, c); blobmsg_close_array(&buf, c);
ubus_send_reply(ctx, req, buf.head); ubus_send_reply(ctx, req, buf.head);
blob_buf_free(&buf);
return 0; return 0;
} }
@ -307,6 +309,7 @@ rpc_file_stat(struct ubus_context *ctx, struct ubus_object *obj,
blobmsg_add_u32(&buf, "gid", s.st_gid); blobmsg_add_u32(&buf, "gid", s.st_gid);
ubus_send_reply(ctx, req, buf.head); ubus_send_reply(ctx, req, buf.head);
blob_buf_free(&buf);
return 0; return 0;
} }
@ -393,6 +396,7 @@ rpc_file_exec_reply(struct rpc_file_exec_context *c, int rv)
rpc_ustream_to_blobmsg(&c->epipe.stream, "stderr"); rpc_ustream_to_blobmsg(&c->epipe.stream, "stderr");
ubus_send_reply(c->context, &c->request, buf.head); ubus_send_reply(c->context, &c->request, buf.head);
blob_buf_free(&buf);
} }
ubus_complete_deferred_request(c->context, &c->request, rv); ubus_complete_deferred_request(c->context, &c->request, rv);