Commit d99ee289 authored by Dan Carpenter's avatar Dan Carpenter Committed by Greg Kroah-Hartman
Browse files

staging: wilc1000: fix mgmt_tx()



There was a missing curly brace so this function returns failure instead
of succeeding.

Fixes: 06fb9336 ('staging: wilc1000: wilc_wfi_cfgoperations.c: replaces PRINT_ER with netdev_err')
Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 59ca8f20
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -1832,9 +1832,10 @@ static int mgmt_tx(struct wiphy *wiphy,
			return -EFAULT;

		mgmt_tx->buff = kmalloc(buf_len, GFP_KERNEL);
		if (!mgmt_tx->buff)
		if (!mgmt_tx->buff) {
			kfree(mgmt_tx);
			return -EFAULT;
			return -ENOMEM;
		}

		memcpy(mgmt_tx->buff, buf, len);
		mgmt_tx->size = len;