Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5236467a authored by Adrian Bunk's avatar Adrian Bunk Committed by James Bottomley
Browse files

[SCSI] megaraid/megaraid_mm.c: fix a NULL pointer dereference



This patch fixes a NULL pointer dereference spotted by the Coverity
checker.

Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
Signed-off-by: default avatarJames Bottomley <James.Bottomley@SteelEye.com>
parent 52824b6b
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -898,10 +898,8 @@ mraid_mm_register_adp(mraid_mmadp_t *lld_adp)

	adapter = kmalloc(sizeof(mraid_mmadp_t), GFP_KERNEL);

	if (!adapter) {
		rval = -ENOMEM;
		goto memalloc_error;
	}
	if (!adapter)
		return -ENOMEM;

	memset(adapter, 0, sizeof(mraid_mmadp_t));