diff mbox series

[next] fs: Fix uninitialized variable uflags

Message ID 20250226223913.591371-1-colin.i.king@gmail.com (mailing list archive)
State New
Headers show
Series [next] fs: Fix uninitialized variable uflags | expand

Commit Message

Colin Ian King Feb. 26, 2025, 10:39 p.m. UTC
The variable uflags is only being initialized in the if statement that
checks if flags & MOVE_MOUNT_F_EMPTY_PATH is non-zero.  Fix this by
initializing uflags at the start of the system call move_mount.

Fixes: b1e9423d65e3 ("fs: support getname_maybe_null() in move_mount()")
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 fs/namespace.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Christian Brauner Feb. 27, 2025, 8:09 a.m. UTC | #1
On Wed, Feb 26, 2025 at 10:39:12PM +0000, Colin Ian King wrote:
> The variable uflags is only being initialized in the if statement that
> checks if flags & MOVE_MOUNT_F_EMPTY_PATH is non-zero.  Fix this by
> initializing uflags at the start of the system call move_mount.
> 
> Fixes: b1e9423d65e3 ("fs: support getname_maybe_null() in move_mount()")
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
> ---

Thanks, Colin. I've already taken in a patch from Arnd Bergmann
yesterday. So this should already be fixed.

>  fs/namespace.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/fs/namespace.c b/fs/namespace.c
> index 663bacefddfa..c19e919a9108 100644
> --- a/fs/namespace.c
> +++ b/fs/namespace.c
> @@ -4599,7 +4599,7 @@ SYSCALL_DEFINE5(move_mount,
>  	struct path from_path __free(path_put) = {};
>  	struct filename *to_name __free(putname) = NULL;
>  	struct filename *from_name __free(putname) = NULL;
> -	unsigned int lflags, uflags;
> +	unsigned int lflags, uflags = 0;
>  	enum mnt_tree_flags_t mflags = 0;
>  	int ret = 0;
>  
> -- 
> 2.47.2
>
diff mbox series

Patch

diff --git a/fs/namespace.c b/fs/namespace.c
index 663bacefddfa..c19e919a9108 100644
--- a/fs/namespace.c
+++ b/fs/namespace.c
@@ -4599,7 +4599,7 @@  SYSCALL_DEFINE5(move_mount,
 	struct path from_path __free(path_put) = {};
 	struct filename *to_name __free(putname) = NULL;
 	struct filename *from_name __free(putname) = NULL;
-	unsigned int lflags, uflags;
+	unsigned int lflags, uflags = 0;
 	enum mnt_tree_flags_t mflags = 0;
 	int ret = 0;