[PATCH] Removed redundant NULL check for b in wpabuf_concat()

Nishant Chaprana n.chaprana at samsung.com
Thu Oct 27 23:42:04 PDT 2016


Signed-off-by: Nishant Chaprana <n.chaprana at samsung.com>
---
 src/utils/wpabuf.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/utils/wpabuf.c b/src/utils/wpabuf.c
index 96cb25c..ad7e01b 100644
--- a/src/utils/wpabuf.c
+++ b/src/utils/wpabuf.c
@@ -244,15 +244,15 @@ struct wpabuf * wpabuf_concat(struct wpabuf *a, struct wpabuf *b)
 
 	if (a)
 		len += wpabuf_len(a);
-	if (b)
-		len += wpabuf_len(b);
+
+	len += wpabuf_len(b);
 
 	n = wpabuf_alloc(len);
 	if (n) {
 		if (a)
 			wpabuf_put_buf(n, a);
-		if (b)
-			wpabuf_put_buf(n, b);
+
+		wpabuf_put_buf(n, b);
 	}
 
 	wpabuf_free(a);
-- 
1.9.1




More information about the Hostap mailing list