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


Groups > linux.kernel > #1421778 > unrolled thread

[patch 2/2] staging: ks7010: remove bogus NULL checks

Started byDan Carpenter <dan.carpenter@oracle.com>
First post2016-06-14 13:20 +0200
Last post2016-06-14 13:20 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [patch 2/2] staging: ks7010: remove bogus NULL checks Dan Carpenter <dan.carpenter@oracle.com> - 2016-06-14 13:20 +0200

#1421778 — [patch 2/2] staging: ks7010: remove bogus NULL checks

FromDan Carpenter <dan.carpenter@oracle.com>
Date2016-06-14 13:20 +0200
Subject[patch 2/2] staging: ks7010: remove bogus NULL checks
Message-ID<rJUxX-46H-9@gated-at.bofh.it>
enc->rx_seq[] and enc->key[] are arrays, not pointers and they can't be
NULL.  Let's remove these NULL checks.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>

diff --git a/drivers/staging/ks7010/ks_wlan_net.c b/drivers/staging/ks7010/ks_wlan_net.c
index 8ef0f11..fc93028 100644
--- a/drivers/staging/ks7010/ks_wlan_net.c
+++ b/drivers/staging/ks7010/ks_wlan_net.c
@@ -1910,11 +1910,8 @@ static int ks_wlan_set_encode_ext(struct net_device *dev,
 			priv->wpa.txkey = index;
 			commit |= SME_WEP_INDEX;
 		} else if (enc->ext_flags & IW_ENCODE_EXT_RX_SEQ_VALID) {
-			if (enc->rx_seq)
-				memcpy(&priv->wpa.key[index].rx_seq[0],
-				       enc->rx_seq, IW_ENCODE_SEQ_MAX_SIZE);
-			else
-				return -EINVAL;
+			memcpy(&priv->wpa.key[index].rx_seq[0],
+			       enc->rx_seq, IW_ENCODE_SEQ_MAX_SIZE);
 		}
 
 		memcpy(&priv->wpa.key[index].addr.sa_data[0],
@@ -1935,7 +1932,7 @@ static int ks_wlan_set_encode_ext(struct net_device *dev,
 				priv->reg.privacy_invoked = 0x01;
 				commit |= SME_WEP_FLAG;
 			}
-			if (enc->key && enc->key_len) {
+			if (enc->key_len) {
 				memcpy(&priv->wpa.key[index].key_val[0],
 				       &enc->key[0], enc->key_len);
 				priv->wpa.key[index].key_len = enc->key_len;
@@ -1947,7 +1944,7 @@ static int ks_wlan_set_encode_ext(struct net_device *dev,
 				priv->reg.privacy_invoked = 0x01;
 				commit |= SME_WEP_FLAG;
 			}
-			if (enc->key && enc->key_len == 32) {
+			if (enc->key_len == 32) {
 				memcpy(&priv->wpa.key[index].key_val[0],
 				       &enc->key[0], enc->key_len - 16);
 				priv->wpa.key[index].key_len =

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web