forked from wolfSSL/wolfssl
cast on input of XISALNUM
This commit is contained in:
@ -743,7 +743,7 @@ static char* expandValue(WOLFSSL_CONF *conf, const char* section,
|
|||||||
strIdx += 2;
|
strIdx += 2;
|
||||||
startIdx = strIdx;
|
startIdx = strIdx;
|
||||||
}
|
}
|
||||||
while (*strIdx && (XISALNUM(*strIdx) || *strIdx == '_'))
|
while (*strIdx && (XISALNUM((int)(*strIdx)) || *strIdx == '_'))
|
||||||
strIdx++;
|
strIdx++;
|
||||||
endIdx = strIdx;
|
endIdx = strIdx;
|
||||||
if (startIdx == endIdx) {
|
if (startIdx == endIdx) {
|
||||||
|
Reference in New Issue
Block a user