summaryrefslogtreecommitdiff
path: root/cmds-receive.c
diff options
context:
space:
mode:
authorStefan Behrens <sbehrens@giantdisaster.de>2013-04-09 19:08:35 +0200
committerDavid Sterba <dsterba@suse.cz>2013-04-23 18:56:23 +0200
commit04629af38aff690ff36f9cc1eac40e6a9088845c (patch)
tree735cbfd8db0c8a040f703bb9d72eb26028d2e01e /cmds-receive.c
parent969d0cbb512d89e5bbd2a34bdb29db62113dc92d (diff)
Btrfs-progs: free memory and close file descriptor in btrfs receive
Nothing really important since this is not part of the library and at the end exit() is called. Signed-off-by: Stefan Behrens <sbehrens@giantdisaster.de>
Diffstat (limited to 'cmds-receive.c')
-rw-r--r--cmds-receive.c27
1 files changed, 24 insertions, 3 deletions
diff --git a/cmds-receive.c b/cmds-receive.c
index fc5094e7..dc72e9e8 100644
--- a/cmds-receive.c
+++ b/cmds-receive.c
@@ -151,6 +151,7 @@ static int process_subvol(const char *path, const u8 *uuid, u64 ctransid,
r->parent_subvol = NULL;
r->cur_subvol->path = strdup(path);
+ free(r->full_subvol_path);
r->full_subvol_path = path_cat(r->root_path, path);
fprintf(stderr, "At subvol %s\n", path);
@@ -196,6 +197,7 @@ static int process_snapshot(const char *path, const u8 *uuid, u64 ctransid,
r->parent_subvol = NULL;
r->cur_subvol->path = strdup(path);
+ free(r->full_subvol_path);
r->full_subvol_path = path_cat(r->root_path, path);
fprintf(stderr, "At snapshot %s\n", path);
@@ -803,9 +805,7 @@ int do_receive(struct btrfs_receive *r, const char *tomnt, int r_fd)
ret = subvol_uuid_search_init(r->mnt_fd, &r->sus);
if (ret < 0)
- return ret;
-
- r->write_fd = -1;
+ goto out;
while (!end) {
ret = btrfs_read_and_process_send_stream(r_fd, &send_ops, r);
@@ -824,7 +824,26 @@ int do_receive(struct btrfs_receive *r, const char *tomnt, int r_fd)
ret = 0;
out:
+ if (r->write_fd != -1) {
+ close(r->write_fd);
+ r->write_fd = -1;
+ }
+ free(r->root_path);
+ r->root_path = NULL;
+ free(r->write_path);
+ r->write_path = NULL;
+ free(r->full_subvol_path);
+ r->full_subvol_path = NULL;
+ if (r->cur_subvol) {
+ free(r->cur_subvol->path);
+ free(r->cur_subvol);
+ r->cur_subvol = NULL;
+ }
subvol_uuid_search_finit(&r->sus);
+ if (r->mnt_fd != -1) {
+ close(r->mnt_fd);
+ r->mnt_fd = -1;
+ }
return ret;
}
@@ -839,6 +858,8 @@ static int do_cmd_receive(int argc, char **argv)
int ret;
memset(&r, 0, sizeof(r));
+ r.mnt_fd = -1;
+ r.write_fd = -1;
while ((c = getopt(argc, argv, "vf:")) != -1) {
switch (c) {