summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--uxc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/uxc.c b/uxc.c
index f67271e..a896d5f 100644
--- a/uxc.c
+++ b/uxc.c
@@ -586,12 +586,12 @@ static int uxc_create(char *name, bool immediately)
ret = 0;
if (ubus_lookup_id(ctx, "container", &id) ||
ubus_invoke(ctx, id, "add", req.head, NULL, NULL, 3000)) {
+ blob_buf_free(&req);
ret = EIO;
}
free(jailname);
free(path);
- blob_buf_free(&req);
return ret;
}