aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging
diff options
context:
space:
mode:
authorIlia Mirkin <imirkin@alum.mit.edu>2011-03-13 00:28:55 -0500
committerGreg Kroah-Hartman <gregkh@suse.de>2011-03-14 14:57:30 -0400
commit23c32986870b4abb5b426d3399a4cbd43948e37c (patch)
tree44723ffc362637094177ba1b1139e7fe2f432e6e /drivers/staging
parent4dd53810912089380223c8fbddd83dcb642b6166 (diff)
staging: bcm: 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: Ilia Mirkin <imirkin@alum.mit.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging')
-rw-r--r--drivers/staging/bcm/CmHost.c11
1 files changed, 2 insertions, 9 deletions
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index 017b4717b25..9be184f143e 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/staging/bcm/CmHost.c
@@ -974,11 +974,7 @@ static VOID CopyToAdapter( register PMINI_ADAPTER Adapter, /**<Pointer to the A
974 !(psfLocalSet->u8RequesttransmissionPolicy & 974 !(psfLocalSet->u8RequesttransmissionPolicy &
975 MASK_DISABLE_HEADER_SUPPRESSION); 975 MASK_DISABLE_HEADER_SUPPRESSION);
976 976
977 if(Adapter->PackInfo[uiSearchRuleIndex].pstSFIndication) 977 kfree(Adapter->PackInfo[uiSearchRuleIndex].pstSFIndication);
978 {
979 kfree(Adapter->PackInfo[uiSearchRuleIndex].pstSFIndication);
980 Adapter->PackInfo[uiSearchRuleIndex].pstSFIndication = NULL;
981 }
982 Adapter->PackInfo[uiSearchRuleIndex].pstSFIndication = pstAddIndication; 978 Adapter->PackInfo[uiSearchRuleIndex].pstSFIndication = pstAddIndication;
983 979
984 //Re Sort the SF list in PackInfo according to Traffic Priority 980 //Re Sort the SF list in PackInfo according to Traffic Priority
@@ -1971,10 +1967,7 @@ INT AllocAdapterDsxBuffer(PMINI_ADAPTER Adapter)
1971 1967
1972INT FreeAdapterDsxBuffer(PMINI_ADAPTER Adapter) 1968INT FreeAdapterDsxBuffer(PMINI_ADAPTER Adapter)
1973{ 1969{
1974 if(Adapter->caDsxReqResp) 1970 kfree(Adapter->caDsxReqResp);
1975 {
1976 kfree(Adapter->caDsxReqResp);
1977 }
1978 return 0; 1971 return 0;
1979 1972
1980} 1973}