1
0
Fork 0

net: ethernet: toshiba: ps3_gelic_net.c: Cleaning up a check on a memory allocation

A check on a memory allocation is checked incorrectly.

This was partly found using a static code analysis program called cppcheck.

Signed-off-by: Rickard Strandqvist <rickard_strandqvist@spectrumdigital.se>
Acked-by: Geoff Levand <geoff@infradead.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
wifi-calibration
Rickard Strandqvist 2014-06-07 12:22:08 +02:00 committed by David S. Miller
parent a25aafaa5b
commit 655aa39306
1 changed files with 1 additions and 1 deletions

View File

@ -1561,7 +1561,7 @@ static struct gelic_card *gelic_alloc_card_net(struct net_device **netdev)
* alloc netdev
*/
*netdev = alloc_etherdev(sizeof(struct gelic_port));
if (!netdev) {
if (!*netdev) {
kfree(card->unalign);
return NULL;
}