diff mbox series

fsinfo: Fix uninitialized variable in fsinfo_generic_mount_all()

Message ID 20200515120908.GB575846@mwanda (mailing list archive)
State New, archived
Headers show
Series fsinfo: Fix uninitialized variable in fsinfo_generic_mount_all() | expand

Commit Message

Dan Carpenter May 15, 2020, 12:09 p.m. UTC
The "conn" variable is never set to false.

Fixes: f2494de388bd ("fsinfo: Add an attribute that lists all the visible mounts in a namespace")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
---
The buggy commit looks like preliminary stuff not pushed to anywhere so
probably this can just be folded in.

 fs/namespace.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

David Howells May 19, 2020, 4:18 p.m. UTC | #1
Dan Carpenter <dan.carpenter@oracle.com> wrote:

> The "conn" variable is never set to false.
> 
> Fixes: f2494de388bd ("fsinfo: Add an attribute that lists all the visible mounts in a namespace")
> Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
> ---
> The buggy commit looks like preliminary stuff not pushed to anywhere so
> probably this can just be folded in.

I folded in someone else's equivalent patch, thanks.

David
diff mbox series

Patch

diff --git a/fs/namespace.c b/fs/namespace.c
index 3fd24575756b..ae489cbac467 100644
--- a/fs/namespace.c
+++ b/fs/namespace.c
@@ -4433,7 +4433,7 @@  int fsinfo_generic_mount_all(struct path *path, struct fsinfo_context *ctx)
 	struct mnt_namespace *ns;
 	struct mount *m, *p;
 	struct path chroot;
-	bool conn;
+	bool conn = false;
 
 	m = real_mount(path->mnt);
 	ns = m->mnt_ns;