linux-btrfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] btrfs-progs: Fix check_arg_type() which doesn't use realpath() result.
@ 2014-02-12  5:44 Qu Wenruo
  0 siblings, 0 replies; only message in thread
From: Qu Wenruo @ 2014-02-12  5:44 UTC (permalink / raw)
  To: linux-btrfs; +Cc: Anand Jain

Fix a problem that does not use the result of realpath(), which caused
check_arg_type() can't handle mount point which ends with a final '/'.

Signed-off-by: Qu Wenruo <quwenruo@cn.fujitsu.com>
Cc: Anand Jain <anand.jain@oracle.com>
---
 cmds-filesystem.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/cmds-filesystem.c b/cmds-filesystem.c
index b12976f..e3c1156 100644
--- a/cmds-filesystem.c
+++ b/cmds-filesystem.c
@@ -448,10 +448,10 @@ static int check_arg_type(char *input)
 		return -EINVAL;
 
 	if (realpath(input, path)) {
-		if (is_block_device(input) == 1)
+		if (is_block_device(path) == 1)
 			return BTRFS_ARG_BLKDEV;
 
-		if (is_mount_point(input) == 1)
+		if (is_mount_point(path) == 1)
 			return BTRFS_ARG_MNTPOINT;
 
 		return BTRFS_ARG_UNKNOWN;
-- 
1.8.5.4


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2014-02-12  5:43 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-12  5:44 [PATCH] btrfs-progs: Fix check_arg_type() which doesn't use realpath() result Qu Wenruo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).