From: Denys Vlasenko Date: Mon, 28 Feb 2011 10:09:49 +0000 (+0100) Subject: mount: strip multiple trailing slashes, not just one X-Git-Tag: 1_19_0~265 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=c6450c974f4ff8520113d727d58fa74f474cd913;p=oweals%2Fbusybox.git mount: strip multiple trailing slashes, not just one Signed-off-by: Denys Vlasenko --- diff --git a/util-linux/mount.c b/util-linux/mount.c index 0127f1958..989e5d1a8 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c @@ -565,7 +565,7 @@ static int mount_it_now(struct mntent *mp, long vfsflags, char *filteropts) // Remove trailing / (if any) from directory we mounted on i = strlen(mp->mnt_dir) - 1; while (i > 0 && mp->mnt_dir[i] == '/') - mp->mnt_dir[i] = '\0'; + mp->mnt_dir[i--] = '\0'; // Convert to canonical pathnames as needed mp->mnt_dir = bb_simplify_path(mp->mnt_dir);