Blame SOURCES/e2fsprogs-1.45.6-lsattr-check-whether-path-is-NULL-in-lsattr_dir_proc.patch

a77133
From 18850fa92c398f4a60827dd5da020f9af0822424 Mon Sep 17 00:00:00 2001
a77133
From: Zhiqiang Liu <liuzhiqiang26@huawei.com>
a77133
Date: Wed, 28 Jul 2021 09:56:48 +0800
a77133
Subject: [PATCH 37/46] lsattr: check whether path is NULL in lsattr_dir_proc()
a77133
Content-Type: text/plain
a77133
a77133
In lsattr_dir_proc(), if malloc() return NULL, it will cause
a77133
a segmentation fault problem.
a77133
a77133
Signed-off-by: Zhiqiang Liu <liuzhiqiang26@huawei.com>
a77133
Signed-off-by: Wu Guanghao <wuguanghao3@huawei.com>
a77133
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
a77133
Signed-off-by: Lukas Czerner <lczerner@redhat.com>
a77133
---
a77133
 misc/lsattr.c | 5 +++++
a77133
 1 file changed, 5 insertions(+)
a77133
a77133
diff --git a/misc/lsattr.c b/misc/lsattr.c
a77133
index 0d954376..55080e92 100644
a77133
--- a/misc/lsattr.c
a77133
+++ b/misc/lsattr.c
a77133
@@ -144,6 +144,11 @@ static int lsattr_dir_proc (const char * dir_name, struct dirent * de,
a77133
 	int dir_len = strlen(dir_name);
a77133
 
a77133
 	path = malloc(dir_len + strlen (de->d_name) + 2);
a77133
+	if (!path) {
a77133
+		fputs(_("Couldn't allocate path variable in lsattr_dir_proc\n"),
a77133
+			stderr);
a77133
+		return -1;
a77133
+	}
a77133
 
a77133
 	if (dir_len && dir_name[dir_len-1] == '/')
a77133
 		sprintf (path, "%s%s", dir_name, de->d_name);
a77133
-- 
a77133
2.35.1
a77133