* [PATCH] mfd: fix unintentional NULL check in menelaus_set_voltage()
@ 2014-05-28 13:33 Emil Goode
2014-05-28 15:20 ` Lee Jones
0 siblings, 1 reply; 3+ messages in thread
From: Emil Goode @ 2014-05-28 13:33 UTC (permalink / raw)
To: Samuel Ortiz, Lee Jones, Jingoo Han
Cc: linux-kernel, kernel-janitors, Emil Goode
The struct menelaus_vtg pointer vtg cannot be NULL here
so the condition is never true and if it ever was true
it would lead to a NULL pointer dereference when we goto
label set_voltage.
Before the below patch was applied the code was:
if (vtg == 0)
The intention was to check if vtg_val is 0.
commit 59a9f7a32adf6537b4e4db8ca204eeb77d7a634e
("mfd: menelaus: Use NULL instead of 0")
Signed-off-by: Emil Goode <emilgoode@gmail.com>
---
Hello,
This is only build tested, it would be good to get a comment
from someone who is familiar with this code.
Found using coccinelle.
Best regards,
Emil Goode
drivers/mfd/menelaus.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/mfd/menelaus.c b/drivers/mfd/menelaus.c
index ad25bfa..4859597 100644
--- a/drivers/mfd/menelaus.c
+++ b/drivers/mfd/menelaus.c
@@ -466,7 +466,7 @@ static int menelaus_set_voltage(const struct menelaus_vtg *vtg, int mV,
struct i2c_client *c = the_menelaus->client;
mutex_lock(&the_menelaus->lock);
- if (!vtg)
+ if (vtg_val == 0)
goto set_voltage;
ret = menelaus_read_reg(vtg->vtg_reg);
--
1.7.10.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] mfd: fix unintentional NULL check in menelaus_set_voltage()
2014-05-28 13:33 [PATCH] mfd: fix unintentional NULL check in menelaus_set_voltage() Emil Goode
@ 2014-05-28 15:20 ` Lee Jones
2014-05-28 16:18 ` Emil Goode
0 siblings, 1 reply; 3+ messages in thread
From: Lee Jones @ 2014-05-28 15:20 UTC (permalink / raw)
To: Emil Goode; +Cc: Samuel Ortiz, Jingoo Han, linux-kernel, kernel-janitors
On Wed, 28 May 2014, Emil Goode wrote:
> The struct menelaus_vtg pointer vtg cannot be NULL here
> so the condition is never true and if it ever was true
> it would lead to a NULL pointer dereference when we goto
> label set_voltage.
>
> Before the below patch was applied the code was:
>
> if (vtg == 0)
>
> The intention was to check if vtg_val is 0.
>
> commit 59a9f7a32adf6537b4e4db8ca204eeb77d7a634e
> ("mfd: menelaus: Use NULL instead of 0")
>
> Signed-off-by: Emil Goode <emilgoode@gmail.com>
> ---
> Hello,
>
> This is only build tested, it would be good to get a comment
> from someone who is familiar with this code.
>
> Found using coccinelle.
>
> Best regards,
>
> Emil Goode
>
> drivers/mfd/menelaus.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/mfd/menelaus.c b/drivers/mfd/menelaus.c
> index ad25bfa..4859597 100644
> --- a/drivers/mfd/menelaus.c
> +++ b/drivers/mfd/menelaus.c
> @@ -466,7 +466,7 @@ static int menelaus_set_voltage(const struct menelaus_vtg *vtg, int mV,
> struct i2c_client *c = the_menelaus->client;
>
> mutex_lock(&the_menelaus->lock);
> - if (!vtg)
> + if (vtg_val == 0)
I would prefer:
if (!vtg_val)
> goto set_voltage;
>
> ret = menelaus_read_reg(vtg->vtg_reg);
--
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] mfd: fix unintentional NULL check in menelaus_set_voltage()
2014-05-28 15:20 ` Lee Jones
@ 2014-05-28 16:18 ` Emil Goode
0 siblings, 0 replies; 3+ messages in thread
From: Emil Goode @ 2014-05-28 16:18 UTC (permalink / raw)
To: Lee Jones; +Cc: Samuel Ortiz, Jingoo Han, linux-kernel, kernel-janitors
Hello,
On Wed, May 28, 2014 at 04:20:11PM +0100, Lee Jones wrote:
> On Wed, 28 May 2014, Emil Goode wrote:
>
> > The struct menelaus_vtg pointer vtg cannot be NULL here
> > so the condition is never true and if it ever was true
> > it would lead to a NULL pointer dereference when we goto
> > label set_voltage.
> >
> > Before the below patch was applied the code was:
> >
> > if (vtg == 0)
> >
> > The intention was to check if vtg_val is 0.
> >
> > commit 59a9f7a32adf6537b4e4db8ca204eeb77d7a634e
> > ("mfd: menelaus: Use NULL instead of 0")
> >
> > Signed-off-by: Emil Goode <emilgoode@gmail.com>
> > ---
> > Hello,
> >
> > This is only build tested, it would be good to get a comment
> > from someone who is familiar with this code.
> >
> > Found using coccinelle.
> >
> > Best regards,
> >
> > Emil Goode
> >
> > drivers/mfd/menelaus.c | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/drivers/mfd/menelaus.c b/drivers/mfd/menelaus.c
> > index ad25bfa..4859597 100644
> > --- a/drivers/mfd/menelaus.c
> > +++ b/drivers/mfd/menelaus.c
> > @@ -466,7 +466,7 @@ static int menelaus_set_voltage(const struct menelaus_vtg *vtg, int mV,
> > struct i2c_client *c = the_menelaus->client;
> >
> > mutex_lock(&the_menelaus->lock);
> > - if (!vtg)
> > + if (vtg_val == 0)
>
> I would prefer:
>
> if (!vtg_val)
Ok, I will resend.
Best regards,
Emil Goode
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-05-28 16:18 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-28 13:33 [PATCH] mfd: fix unintentional NULL check in menelaus_set_voltage() Emil Goode
2014-05-28 15:20 ` Lee Jones
2014-05-28 16:18 ` Emil Goode
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox