All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ceph: Check memory allocation result
@ 2018-01-26  6:54 Chengguang Xu
  2018-01-29 16:42 ` Ilya Dryomov
  0 siblings, 1 reply; 4+ messages in thread
From: Chengguang Xu @ 2018-01-26  6:54 UTC (permalink / raw)
  To: ceph-devel; +Cc: zyan, sage, davem, idryomov, netdev, Chengguang Xu

Should check result of kstrndup() in case of memory allocation failure.

Signed-off-by: Chengguang Xu <cgxu519@icloud.com>
---
 net/ceph/ceph_common.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/net/ceph/ceph_common.c b/net/ceph/ceph_common.c
index 5c036d2..1e492ef 100644
--- a/net/ceph/ceph_common.c
+++ b/net/ceph/ceph_common.c
@@ -421,6 +421,10 @@ struct ceph_options *
 			opt->name = kstrndup(argstr[0].from,
 					      argstr[0].to-argstr[0].from,
 					      GFP_KERNEL);
+			if (!opt->name) {
+				err = -ENOMEM;
+				goto out;
+			}
 			break;
 		case Opt_secret:
 		        opt->key = kzalloc(sizeof(*opt->key), GFP_KERNEL);
-- 
1.8.3.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-01-30 13:31 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-01-26  6:54 [PATCH] ceph: Check memory allocation result Chengguang Xu
2018-01-29 16:42 ` Ilya Dryomov
2018-01-30  0:08   ` Chengguang Xu
2018-01-30 13:31     ` Ilya Dryomov

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.