forked from Minki/linux
sock.c: potential null dereference
We test that "prot->rsk_prot" is non-null right before we dereference it on this line. Signed-off-by: Dan Carpenter <error27@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
ea3fb371b2
commit
72150e9b7f
@ -2288,7 +2288,8 @@ out_free_request_sock_slab:
|
||||
prot->rsk_prot->slab = NULL;
|
||||
}
|
||||
out_free_request_sock_slab_name:
|
||||
kfree(prot->rsk_prot->slab_name);
|
||||
if (prot->rsk_prot)
|
||||
kfree(prot->rsk_prot->slab_name);
|
||||
out_free_sock_slab:
|
||||
kmem_cache_destroy(prot->slab);
|
||||
prot->slab = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user