Commit 2d66806d authored by Eric Sesterhenn's avatar Eric Sesterhenn Committed by Jeff Garzik

[PATCH] chelsio: fix kmalloc failure in t1_espi_create

memset() is called before check.
Signed-off-by: default avatarEric Sesterhenn <snakebyte@gmx.de>
Signed-off-by: default avatarAlexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: default avatarJeff Garzik <jeff@garzik.org>
parent d033d934
...@@ -296,9 +296,7 @@ void t1_espi_destroy(struct peespi *espi) ...@@ -296,9 +296,7 @@ void t1_espi_destroy(struct peespi *espi)
struct peespi *t1_espi_create(adapter_t *adapter) struct peespi *t1_espi_create(adapter_t *adapter)
{ {
struct peespi *espi = kmalloc(sizeof(*espi), GFP_KERNEL); struct peespi *espi = kzalloc(sizeof(*espi), GFP_KERNEL);
memset(espi, 0, sizeof(*espi));
if (espi) if (espi)
espi->adapter = adapter; espi->adapter = adapter;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment