Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1456179
| From | Dan Carpenter <dan.carpenter@oracle.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [patch] mailbox: bcm-pdc: potential NULL dereference in pdc_shutdown() |
| Date | 2016-08-04 07:40 +0200 |
| Message-ID | <s2jxT-4Ea-7@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
We can't pass NULL pointers to pdc_ring_free() so I moved the check for
NULL.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
diff --git a/drivers/mailbox/bcm-pdc-mailbox.c b/drivers/mailbox/bcm-pdc-mailbox.c
index cbe0c1e..c56d4d0 100644
--- a/drivers/mailbox/bcm-pdc-mailbox.c
+++ b/drivers/mailbox/bcm-pdc-mailbox.c
@@ -1191,10 +1191,11 @@ static void pdc_shutdown(struct mbox_chan *chan)
{
struct pdc_state *pdcs = chan->con_priv;
- if (pdcs)
- dev_dbg(&pdcs->pdev->dev,
- "Shutdown mailbox channel for PDC %u", pdcs->pdc_idx);
+ if (!pdcs)
+ return;
+ dev_dbg(&pdcs->pdev->dev,
+ "Shutdown mailbox channel for PDC %u", pdcs->pdc_idx);
pdc_ring_free(pdcs);
}
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[patch] mailbox: bcm-pdc: potential NULL dereference in pdc_shutdown() Dan Carpenter <dan.carpenter@oracle.com> - 2016-08-04 07:40 +0200 Re: [patch] mailbox: bcm-pdc: potential NULL dereference in pdc_shutdown() "Rob (William) Rice" <rob.rice@broadcom.com> - 2016-08-04 13:20 +0200
csiph-web