Merge pull request #2390 from dgarske/altname
Fix for scan-build warning with altName->name possible use of NULL
This commit is contained in:
commit
c34657b20f
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user