Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1449812 > unrolled thread

[PATCH] staging: rtl8188eu: Delete an unnecessary check before the function call "vfree"

Started bySF Markus Elfring <elfring@users.sourceforge.net>
First post2016-07-25 23:00 +0200
Last post2016-07-25 23:00 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH] staging: rtl8188eu: Delete an unnecessary check before the  function call "vfree" SF Markus Elfring <elfring@users.sourceforge.net> - 2016-07-25 23:00 +0200

#1449812 — [PATCH] staging: rtl8188eu: Delete an unnecessary check before the function call "vfree"

FromSF Markus Elfring <elfring@users.sourceforge.net>
Date2016-07-25 23:00 +0200
Subject[PATCH] staging: rtl8188eu: Delete an unnecessary check before the function call "vfree"
Message-ID<rYV8K-Pn-23@gated-at.bofh.it>
From: Markus Elfring <elfring@users.sourceforge.net>
Date: Mon, 25 Jul 2016 22:20:24 +0200

The vfree() function performs also input parameter validation.
Thus the test around the call is not needed.

This issue was detected by using the Coccinelle software.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
---
 drivers/staging/rtl8188eu/core/rtw_xmit.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/drivers/staging/rtl8188eu/core/rtw_xmit.c b/drivers/staging/rtl8188eu/core/rtw_xmit.c
index e0a5567..39ffb46 100644
--- a/drivers/staging/rtl8188eu/core/rtw_xmit.c
+++ b/drivers/staging/rtl8188eu/core/rtw_xmit.c
@@ -252,10 +252,7 @@ void _rtw_free_xmit_priv(struct xmit_priv *pxmitpriv)
 		pxmitbuf++;
 	}
 
-	if (pxmitpriv->pallocated_xmit_extbuf) {
-		vfree(pxmitpriv->pallocated_xmit_extbuf);
-	}
-
+	vfree(pxmitpriv->pallocated_xmit_extbuf);
 	rtw_free_hwxmits(padapter);
 
 	mutex_destroy(&pxmitpriv->ack_tx_mutex);
-- 
2.9.2

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web