mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-08 14:13:53 +00:00
ACPI: fix NULL check in drivers/acpi/osl.c
Spotted by the Coverity checker. Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
parent
83822fc9e6
commit
a6fdbf90b9
@ -1032,7 +1032,7 @@ acpi_status
|
||||
acpi_os_create_cache(char *name, u16 size, u16 depth, acpi_cache_t ** cache)
|
||||
{
|
||||
*cache = kmem_cache_create(name, size, 0, 0, NULL, NULL);
|
||||
if (cache == NULL)
|
||||
if (*cache == NULL)
|
||||
return AE_ERROR;
|
||||
else
|
||||
return AE_OK;
|
||||
|
Loading…
Reference in New Issue
Block a user