From: Jouni Malinen Date: Sun, 2 Mar 2014 14:16:48 +0000 (+0200) Subject: Remove a static analyzer warning about unused variable write X-Git-Tag: hostap_2_2~687 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e997bc75dd58adee7b1ff9598e2ac994d4c0d31a;p=thirdparty%2Fhostap.git Remove a static analyzer warning about unused variable write The pos variable was not used between its first and second assignment. Clean this up by using the pos variables instead of the buf (start of the buffer). Signed-off-by: Jouni Malinen --- diff --git a/src/ap/peerkey_auth.c b/src/ap/peerkey_auth.c index ba5c60644..612babc67 100644 --- a/src/ap/peerkey_auth.c +++ b/src/ap/peerkey_auth.c @@ -221,8 +221,8 @@ static void wpa_send_smk_m5(struct wpa_authenticator *wpa_auth, return; /* Peer RSN IE */ - os_memcpy(buf, kde->rsn_ie, kde->rsn_ie_len); - pos = buf + kde->rsn_ie_len; + os_memcpy(pos, kde->rsn_ie, kde->rsn_ie_len); + pos += kde->rsn_ie_len; /* Peer MAC Address */ pos = wpa_add_kde(pos, RSN_KEY_DATA_MAC_ADDR, peer, ETH_ALEN, NULL, 0);