Fix an incorrect check in ea_set that would crash debugfs if someone runs 'ea_set / foo.bar' (i.e. with no value argument) Signed-off-by: Darrick J. Wong <darrick.wong@xxxxxxxxxx> --- debugfs/xattrs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debugfs/xattrs.c b/debugfs/xattrs.c index a80fd0b..e71bc15 100644 --- a/debugfs/xattrs.c +++ b/debugfs/xattrs.c @@ -202,7 +202,7 @@ void do_set_xattr(int argc, char **argv) } } - if (optind != argc - 2 && optind != argc - 3) { + if (!(fp && optind == argc - 2) && !(!fp && optind == argc - 3)) { printf("%s: Usage: %s <file> <attr> [-f infile | value>]\n", argv[0], argv[0]); goto out2; -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html