Message ID | pan.2014.04.26.09.41.04@googlemail.com (mailing list archive) |
---|---|
State | Accepted |
Headers | show |
diff --git a/mkfs.c b/mkfs.c index dbd83f5..173972c 100644 --- a/mkfs.c +++ b/mkfs.c @@ -350,7 +350,7 @@ static struct option long_options[] = { { "version", 0, NULL, 'V' }, { "rootdir", 1, NULL, 'r' }, { "nodiscard", 0, NULL, 'K' }, - { "features", 0, NULL, 'O' }, + { "features", 1, NULL, 'O' }, { NULL, 0, NULL, 0} };
The mkfs.btrfs --features long option takes an argument but does not declare it. Consequently getopt does not allocate an argument, which makes an unconditional strdup() crash during options parsing. Fix by declaring the argument in the options alias array. Signed-off-by: Holger Hoffstätte <holger.hoffstaette@googlemail.com> --- mkfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)