mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-28 10:18:21 -05:00
Remove useless NULL comparison for an array
Now that the TLS peer_cert information is provided as a full struct to handler functions, the altsubject pointer shows up as an array and causes static analyzers to warn about unnecessary NULL comparison. Get rid of that comparison now that it is clearly not needed anymore. Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
cd803299ca
commit
d3a035169b
@ -502,6 +502,7 @@ static void eapol_test_cert_cb(void *ctx, struct tls_cert_data *cert,
|
||||
const char *cert_hash)
|
||||
{
|
||||
struct eapol_test_data *e = ctx;
|
||||
int i;
|
||||
|
||||
wpa_msg(e->wpa_s, MSG_INFO, WPA_EVENT_EAP_PEER_CERT
|
||||
"depth=%d subject='%s'%s%s",
|
||||
@ -528,14 +529,9 @@ static void eapol_test_cert_cb(void *ctx, struct tls_cert_data *cert,
|
||||
cert->subject, cert->cert);
|
||||
}
|
||||
|
||||
if (cert->altsubject) {
|
||||
int i;
|
||||
|
||||
for (i = 0; i < cert->num_altsubject; i++)
|
||||
wpa_msg(e->wpa_s, MSG_INFO, WPA_EVENT_EAP_PEER_ALT
|
||||
"depth=%d %s", cert->depth,
|
||||
cert->altsubject[i]);
|
||||
}
|
||||
for (i = 0; i < cert->num_altsubject; i++)
|
||||
wpa_msg(e->wpa_s, MSG_INFO, WPA_EVENT_EAP_PEER_ALT
|
||||
"depth=%d %s", cert->depth, cert->altsubject[i]);
|
||||
}
|
||||
|
||||
|
||||
|
@ -791,6 +791,8 @@ void wpas_notify_certification(struct wpa_supplicant *wpa_s,
|
||||
struct tls_cert_data *cert,
|
||||
const char *cert_hash)
|
||||
{
|
||||
int i;
|
||||
|
||||
wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_EAP_PEER_CERT
|
||||
"depth=%d subject='%s'%s%s%s",
|
||||
cert->depth, cert->subject, cert_hash ? " hash=" : "",
|
||||
@ -812,14 +814,9 @@ void wpas_notify_certification(struct wpa_supplicant *wpa_s,
|
||||
}
|
||||
}
|
||||
|
||||
if (cert->altsubject) {
|
||||
int i;
|
||||
|
||||
for (i = 0; i < cert->num_altsubject; i++)
|
||||
wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_EAP_PEER_ALT
|
||||
"depth=%d %s", cert->depth,
|
||||
cert->altsubject[i]);
|
||||
}
|
||||
for (i = 0; i < cert->num_altsubject; i++)
|
||||
wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_EAP_PEER_ALT
|
||||
"depth=%d %s", cert->depth, cert->altsubject[i]);
|
||||
|
||||
/* notify the new DBus API */
|
||||
wpas_dbus_signal_certification(wpa_s, cert->depth, cert->subject,
|
||||
|
Loading…
Reference in New Issue
Block a user