mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-30 02:37:28 +02:00
Merge pull request #2390 from dgarske/altname
Fix for scan-build warning with altName->name possible use of NULL
This commit is contained in:
@ -8495,8 +8495,10 @@ static int CheckForAltNames(DecodedCert* dCert, char* domain, int* checkCN)
|
||||
break;
|
||||
}
|
||||
/* No matches and wild pattern match failed. */
|
||||
else if (altName->name[0] == '*' && match == 0)
|
||||
else if (altName->name && altName->len >=1 &&
|
||||
altName->name[0] == '*' && match == 0) {
|
||||
match = -1;
|
||||
}
|
||||
|
||||
altName = altName->next;
|
||||
}
|
||||
|
Reference in New Issue
Block a user