Commit 1d5c536e authored by Ilia Mirkin's avatar Ilia Mirkin Committed by Greg Kroah-Hartman

staging: vt6656: Remove NULL check before kfree

This patch was generated by the following semantic patch:
// <smpl>
@@ expression E; @@
- if (E != NULL) { kfree(E); }
+ kfree(E);

@@ expression E; @@
- if (E != NULL) { kfree(E); E = NULL; }
+ kfree(E);
+ E = NULL;
// </smpl>
Signed-off-by: default avatarIlia Mirkin <imirkin@alum.mit.edu>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 6403bb7d
......@@ -109,8 +109,7 @@ FIRMWAREbDownload(
result = TRUE;
out:
if (pBuffer)
kfree(pBuffer);
kfree(pBuffer);
spin_lock_irq(&pDevice->lock);
return result;
......
......@@ -858,8 +858,7 @@ int vt6656_hostap_ioctl(PSDevice pDevice, struct iw_point *p)
}
out:
if (param != NULL)
kfree(param);
kfree(param);
return ret;
}
......
......@@ -837,8 +837,7 @@ static void device_free_tx_bufs(PSDevice pDevice)
usb_kill_urb(pTxContext->pUrb);
usb_free_urb(pTxContext->pUrb);
}
if (pTxContext)
kfree(pTxContext);
kfree(pTxContext);
}
return;
}
......@@ -861,8 +860,7 @@ static void device_free_rx_bufs(PSDevice pDevice)
if (pRCB->skb)
dev_kfree_skb(pRCB->skb);
}
if (pDevice->pRCBMem)
kfree(pDevice->pRCBMem);
kfree(pDevice->pRCBMem);
return;
}
......@@ -878,8 +876,7 @@ static void usb_device_reset(PSDevice pDevice)
static void device_free_int_bufs(PSDevice pDevice)
{
if (pDevice->intBuf.pDataBuf != NULL)
kfree(pDevice->intBuf.pDataBuf);
kfree(pDevice->intBuf.pDataBuf);
return;
}
......@@ -1480,8 +1477,7 @@ static unsigned char *Config_FileOperation(PSDevice pDevice)
*/
if(result!=0) {
if(buffer)
kfree(buffer);
kfree(buffer);
buffer=NULL;
}
return buffer;
......
......@@ -999,8 +999,7 @@ int wpa_ioctl(PSDevice pDevice, struct iw_point *p)
}
out:
if (param != NULL)
kfree(param);
kfree(param);
return ret;
}
......
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