summaryrefslogtreecommitdiff
path: root/mkfs.c
diff options
context:
space:
mode:
authorQu Wenruo <quwenruo@cn.fujitsu.com>2015-07-29 10:28:17 +0800
committerDavid Sterba <dsterba@suse.com>2015-08-31 19:25:11 +0200
commit6936aa4c4301478aac273059c73d79d557d7774a (patch)
tree9c66e67e9cdf402f5dd0daa9e8ab483ff6fc05d8 /mkfs.c
parentc78f3eea947cafe2a233cb10c3e151a6ea7f4729 (diff)
btrfs-progs: Add missing exit for parse_profile function
In parse_profile() function, in error handling route, it output error message but forgot to exit(1), causing even profile is not valid, it will just fallback to single. Reported-by: James Harvey <jamespharvey20@gmail.com> Signed-off-by: Qu Wenruo <quwenruo@cn.fujitsu.com> Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'mkfs.c')
-rw-r--r--mkfs.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/mkfs.c b/mkfs.c
index 9073f872..7d635dc2 100644
--- a/mkfs.c
+++ b/mkfs.c
@@ -356,6 +356,7 @@ static u64 parse_profile(char *s)
return 0;
} else {
fprintf(stderr, "Unknown profile %s\n", s);
+ exit(1);
}
/* not reached */
return 0;