mirror of
https://github.com/openssl/openssl.git
synced 2025-04-06 20:20:50 +08:00
Fix a windows build break
Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com> Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/14635)
This commit is contained in:
parent
218e1263c4
commit
0dd19e750f
@ -18,12 +18,12 @@ typedef enum {
|
||||
UNICODE_LIMIT
|
||||
} UNICODE_CONSTANTS;
|
||||
|
||||
static ossl_unused inline int is_unicode_surrogate(unsigned long value)
|
||||
static ossl_unused ossl_inline int is_unicode_surrogate(unsigned long value)
|
||||
{
|
||||
return value >= SURROGATE_MIN && value <= SURROGATE_MAX;
|
||||
}
|
||||
|
||||
static ossl_unused inline int is_unicode_valid(unsigned long value)
|
||||
static ossl_unused ossl_inline int is_unicode_valid(unsigned long value)
|
||||
{
|
||||
return value <= UNICODE_MAX && !is_unicode_surrogate(value);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user