diff options
-rw-r--r-- | src/_cffi_src/build_openssl.py | 2 | ||||
-rw-r--r-- | src/_cffi_src/openssl/crypto.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/_cffi_src/build_openssl.py b/src/_cffi_src/build_openssl.py index 6b15fe4a..180cb779 100644 --- a/src/_cffi_src/build_openssl.py +++ b/src/_cffi_src/build_openssl.py @@ -46,7 +46,7 @@ def _extra_compile_args(platform): When we drop support for CRYPTOGRAPHY_OPENSSL_LESS_THAN_110 we can revisit this. """ - if platform != "win32": + if platform not in ["win32", "hp-ux11"]: return ["-Wconversion", "-Wno-error=sign-conversion"] else: return [] diff --git a/src/_cffi_src/openssl/crypto.py b/src/_cffi_src/openssl/crypto.py index dfff21bb..449fff5e 100644 --- a/src/_cffi_src/openssl/crypto.py +++ b/src/_cffi_src/openssl/crypto.py @@ -143,6 +143,6 @@ void *Cryptography_realloc_wrapper(void *ptr, size_t size, const char *path, } void Cryptography_free_wrapper(void *ptr, const char *path, int line) { - return free(ptr); + free(ptr); } """ |