mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-05 11:01:06 -04:00
staging: gasket: remove null ptr check before kfree
Remove null ptr check before kfree because kfree is null ptr safe. Issue found by checkpatch. Signed-off-by: Sumit Kumar <sumit686215@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
2b2424d9a7
commit
3c0971939e
@@ -1328,10 +1328,8 @@ int gasket_alloc_coherent_memory(struct gasket_dev *gasket_dev, u64 size,
|
||||
num_pages * PAGE_SIZE, mem, handle);
|
||||
}
|
||||
|
||||
if (gasket_dev->page_table[index]->coherent_pages) {
|
||||
kfree(gasket_dev->page_table[index]->coherent_pages);
|
||||
gasket_dev->page_table[index]->coherent_pages = NULL;
|
||||
}
|
||||
kfree(gasket_dev->page_table[index]->coherent_pages);
|
||||
gasket_dev->page_table[index]->coherent_pages = NULL;
|
||||
gasket_dev->page_table[index]->num_coherent_pages = 0;
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user