[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20190530090455.GA3059@zhanggen-UX430UQ>
Date: Thu, 30 May 2019 17:04:55 +0800
From: Gen Zhang <blackgod016574@...il.com>
To: hubcap@...ibond.com, martin@...ibond.com
Cc: devel@...ts.orangefs.org, linux-kernel@...r.kernel.org
Subject: [PATCH] orangefs-debugfs: fix a missing-check bug in
debug_string_to_mask()
In debug_string_to_mask(), 'strsep_fodder' is allocated by kstrdup().
It returns NULL when fails. So 'strsep_fodder' should be checked.
Signed-off-by: Gen Zhang <blackgod016574.gmail>
---
diff --git a/fs/orangefs/orangefs-debugfs.c b/fs/orangefs/orangefs-debugfs.c
index 87b1a6f..a9a9aac 100644
--- a/fs/orangefs/orangefs-debugfs.c
+++ b/fs/orangefs/orangefs-debugfs.c
@@ -888,6 +888,8 @@ static void debug_string_to_mask(char *debug_string, void *mask, int type)
char *unchecked_keyword;
int i;
char *strsep_fodder = kstrdup(debug_string, GFP_KERNEL);
+ if (!strsep_fodder)
+ return;
char *original_pointer;
int element_count = 0;
struct client_debug_mask *c_mask = NULL;
Powered by blists - more mailing lists