netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] isdn: mISDN: Fix potential NULL pointer dereference of kzalloc
@ 2019-03-02 21:20 Aditya Pakki
  2019-03-02 21:26 ` Gustavo A. R. Silva
  2019-03-04 18:55 ` David Miller
  0 siblings, 2 replies; 4+ messages in thread
From: Aditya Pakki @ 2019-03-02 21:20 UTC (permalink / raw)
  To: pakki001
  Cc: kjlu, Karsten Keil, David S. Miller, Gustavo A. R. Silva,
	Sebastian Andrzej Siewior, netdev, linux-kernel

Allocating memory via kzalloc for phi may fail and causes a
NULL pointer dereference. This patch avoids such a scenario.

Signed-off-by: Aditya Pakki <pakki001@umn.edu>
---
 drivers/isdn/hardware/mISDN/hfcsusb.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/isdn/hardware/mISDN/hfcsusb.c b/drivers/isdn/hardware/mISDN/hfcsusb.c
index 124ff530da82..26e3182bbca8 100644
--- a/drivers/isdn/hardware/mISDN/hfcsusb.c
+++ b/drivers/isdn/hardware/mISDN/hfcsusb.c
@@ -263,6 +263,9 @@ hfcsusb_ph_info(struct hfcsusb *hw)
 	int i;
 
 	phi = kzalloc(struct_size(phi, bch, dch->dev.nrbchan), GFP_ATOMIC);
+	if (!phi)
+		return;
+
 	phi->dch.ch.protocol = hw->protocol;
 	phi->dch.ch.Flags = dch->Flags;
 	phi->dch.state = dch->state;
-- 
2.17.1


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

end of thread, other threads:[~2019-03-04 18:55 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-03-02 21:20 [PATCH] isdn: mISDN: Fix potential NULL pointer dereference of kzalloc Aditya Pakki
2019-03-02 21:26 ` Gustavo A. R. Silva
2019-03-02 21:39   ` Kangjie Lu
2019-03-04 18:55 ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).