forked from wolfSSL/wolfssl
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