mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 18:09:56 +00:00
allocate_flower_entry: should check for null deref
[ Upstream commit bb1320834b ]
allocate_flower_entry does not check for allocation success, but tries
to deref the result. I only moved the spin_lock under null check, because
the caller is checking allocation's status at line 652.
Signed-off-by: Navid Emamdoost <navid.emamdoost@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
971c59455b
commit
b95697c8e2
@@ -67,7 +67,8 @@ static struct ch_tc_pedit_fields pedits[] = {
|
|||||||
static struct ch_tc_flower_entry *allocate_flower_entry(void)
|
static struct ch_tc_flower_entry *allocate_flower_entry(void)
|
||||||
{
|
{
|
||||||
struct ch_tc_flower_entry *new = kzalloc(sizeof(*new), GFP_KERNEL);
|
struct ch_tc_flower_entry *new = kzalloc(sizeof(*new), GFP_KERNEL);
|
||||||
spin_lock_init(&new->lock);
|
if (new)
|
||||||
|
spin_lock_init(&new->lock);
|
||||||
return new;
|
return new;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user