diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-11-05 08:43:00 +0900 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-11-05 08:43:00 +0900 |
commit | 0b1be548a7c1782126ea8920d65e7b0f6dc69089 (patch) | |
tree | 35ac35b604d43ebf410550421aff8b2927f60c11 /src | |
parent | ea09b72ee4cb37ba038e38ea4784d12dd337df2c (diff) | |
download | cryptography-0b1be548a7c1782126ea8920d65e7b0f6dc69089.tar.gz cryptography-0b1be548a7c1782126ea8920d65e7b0f6dc69089.tar.bz2 cryptography-0b1be548a7c1782126ea8920d65e7b0f6dc69089.zip |
remove malloc_debug_init as it has occasionally caused compile issues
We also don't use it in our backend (and neither does pyOpenSSL)
Diffstat (limited to 'src')
-rw-r--r-- | src/_cffi_src/openssl/crypto.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/_cffi_src/openssl/crypto.py b/src/_cffi_src/openssl/crypto.py index c66bbe36..3c045410 100644 --- a/src/_cffi_src/openssl/crypto.py +++ b/src/_cffi_src/openssl/crypto.py @@ -49,7 +49,6 @@ void OPENSSL_free(void *); MACROS = """ void CRYPTO_add(int *, int, int); void CRYPTO_malloc_init(void); -void CRYPTO_malloc_debug_init(void); """ CUSTOMIZATIONS = """ |