[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CAHb8M2ACqHVwLZRhJ9xkBH6Q4g70FX0aH6WRR0qdqpmbRzKwjg@mail.gmail.com>
Date: Tue, 15 Apr 2014 18:15:17 +0900
From: DaeSeok Youn <daeseok.youn@...il.com>
To: Ben Skeggs <bskeggs@...hat.com>
Cc: airlied@...ux.ie, dri-devel@...ts.freedesktop.org,
linux-kernel <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH] drm/nouveau/clk: fix possible NULL pointer dereference
2014-04-15 16:00 GMT+09:00 Ben Skeggs <bskeggs@...hat.com>:
> ----- Original Message -----
>> From: "Daeseok Youn" <daeseok.youn@...il.com>
>> To: airlied@...ux.ie
>> Cc: bskeggs@...hat.com, dri-devel@...ts.freedesktop.org, linux-kernel@...r.kernel.org
>> Sent: Tuesday, 15 April, 2014 11:56:49 AM
>> Subject: [PATCH] drm/nouveau/clk: fix possible NULL pointer dereference
>>
>>
>> It need to be checking NULL before dereferencing.
> There's no dereference here. It's an address calculation only.
Oh.. You're right.
But the address calculation doesn't need when "pstate" is NULL.
Can I re-send this patch after modifying subject and comment of this
patch properly?
Or drop this patch.
Thanks for review.
Regards,
Daeseok Youn.
>
>>
>> Signed-off-by: Daeseok Youn <daeseok.youn@...il.com>
>> ---
>> drivers/gpu/drm/nouveau/core/subdev/clock/base.c | 2 +-
>> 1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/nouveau/core/subdev/clock/base.c
>> b/drivers/gpu/drm/nouveau/core/subdev/clock/base.c
>> index dd62bae..a586d030 100644
>> --- a/drivers/gpu/drm/nouveau/core/subdev/clock/base.c
>> +++ b/drivers/gpu/drm/nouveau/core/subdev/clock/base.c
>> @@ -290,9 +290,9 @@ nouveau_pstate_new(struct nouveau_clock *clk, int idx)
>> return 0;
>>
>> pstate = kzalloc(sizeof(*pstate), GFP_KERNEL);
>> - cstate = &pstate->base;
>> if (!pstate)
>> return -ENOMEM;
>> + cstate = &pstate->base;
>>
>> INIT_LIST_HEAD(&pstate->list);
>>
>> --
>> 1.7.4.4
>>
>>
>>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists