提交 769adcfe 编写于 作者: R Rich Salz 提交者: Rich Salz

GH102: Extra volatile avoids GCC bug

Reviewed-by: NKurt Roeckx <kurt@openssl.org>
上级 9716b0b9
......@@ -465,7 +465,9 @@ void OpenSSLDie(const char *file, int line, const char *assertion)
#endif
}
int CRYPTO_memcmp(const volatile void *in_a, const volatile void *in_b, size_t len)
int CRYPTO_memcmp(const volatile void * volatile in_a,
const volatile void * volatile in_b,
size_t len)
{
size_t i;
const volatile unsigned char *a = in_a;
......
......@@ -542,7 +542,9 @@ int OPENSSL_gmtime_diff(int *pday, int *psec,
* into a defined order as the return value when a != b is undefined, other
* than to be non-zero.
*/
int CRYPTO_memcmp(const volatile void *a, const volatile void *b, size_t len);
int CRYPTO_memcmp(const volatile void * volatile in_a,
const volatile void * volatile in_b,
size_t len);
/* BEGIN ERROR CODES */
/*
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册