aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKurt Roeckx <kurt@roeckx.be>2017-02-20 18:27:22 +0100
committerKurt Roeckx <kurt@roeckx.be>2017-02-20 18:54:39 +0100
commitd913a0557f040e54120d028ced0a29767f7b12bb (patch)
tree83453d749ad1946081de98e883856ebd0f964613
parente12e903e9ac675d08f9dd0db1f0c1a2049232c21 (diff)
downloadopenssl-d913a0557f040e54120d028ced0a29767f7b12bb.tar.gz
Revert "Use memcmp() instead of CRYPTO_memcmp() when fuzzing"
This reverts commit 3aad8e18707bccaabee5f111de2db0696b45781c. Reviewed-by: Andy Polyakov <appro@openssl.org> GH: #2686
-rw-r--r--crypto/cryptlib.c1
-rw-r--r--e_os.h4
2 files changed, 0 insertions, 5 deletions
diff --git a/crypto/cryptlib.c b/crypto/cryptlib.c
index f916193605..01b8ce5ed1 100644
--- a/crypto/cryptlib.c
+++ b/crypto/cryptlib.c
@@ -324,7 +324,6 @@ void OPENSSL_die(const char *message, const char *file, int line)
* pointers to volatile to not be emitted in some rare,
* never needed in real life, pieces of code.
*/
-# undef CRYPTO_memcmp
int CRYPTO_memcmp(const volatile void * volatile in_a,
const volatile void * volatile in_b,
size_t len)
diff --git a/e_os.h b/e_os.h
index d2f4d3ff28..eafa8623aa 100644
--- a/e_os.h
+++ b/e_os.h
@@ -513,10 +513,6 @@ struct servent *getservbyname(const char *name, const char *proto);
#define OSSL_NELEM(x) (sizeof(x)/sizeof(x[0]))
-#ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
-# define CRYPTO_memcmp memcmp
-#endif
-
#ifdef __cplusplus
}
#endif