From: Christophe Jaillet Date: Sun, 27 Aug 2017 06:30:34 +0000 (+0200) Subject: libnvdimm, btt: check memory allocation failure X-Git-Tag: v4.13.3~30 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=d167685f48672e738c11e862c528837d35d92ff3;p=users%2Fdwmw2%2Flinux.git libnvdimm, btt: check memory allocation failure commit ed36b4dba54a421ce5551638f6a9790b2c2116b1 upstream. Check memory allocation failures and return -ENOMEM in such cases, as already done few lines below for another memory allocation. This avoids NULL pointers dereference. Fixes: 14e494542636 ("libnvdimm, btt: BTT updates for UEFI 2.7 format") Signed-off-by: Christophe JAILLET Reviewed-by: Vishal Verma Signed-off-by: Dan Williams Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/nvdimm/btt.c b/drivers/nvdimm/btt.c index 14323faf8bd96..7ec6393b6ba12 100644 --- a/drivers/nvdimm/btt.c +++ b/drivers/nvdimm/btt.c @@ -1429,6 +1429,8 @@ int nvdimm_namespace_attach_btt(struct nd_namespace_common *ndns) } btt_sb = devm_kzalloc(&nd_btt->dev, sizeof(*btt_sb), GFP_KERNEL); + if (!btt_sb) + return -ENOMEM; /* * If this returns < 0, that is ok as it just means there wasn't