Issue #18178: Fix ctypes on BSD. dlmalloc.c was compiled twice which broke malloc weak symbols.
This commit is contained in:
parent
30b9d5d3af
commit
9ff79f7c46
|
@ -66,6 +66,9 @@ Core and Builtins
|
||||||
Library
|
Library
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
- Issue #18178: Fix ctypes on BSD. dlmalloc.c was compiled twice which broke
|
||||||
|
malloc weak symbols.
|
||||||
|
|
||||||
- Issue #18709: Fix CVE-2013-4238. The SSL module now handles NULL bytes
|
- Issue #18709: Fix CVE-2013-4238. The SSL module now handles NULL bytes
|
||||||
inside subjectAltName correctly. Formerly the module has used OpenSSL's
|
inside subjectAltName correctly. Formerly the module has used OpenSSL's
|
||||||
GENERAL_NAME_print() function to get the string represention of ASN.1
|
GENERAL_NAME_print() function to get the string represention of ASN.1
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
ffi_sources = """
|
ffi_sources = """
|
||||||
src/prep_cif.c
|
src/prep_cif.c
|
||||||
src/closures.c
|
src/closures.c
|
||||||
src/dlmalloc.c
|
|
||||||
""".split()
|
""".split()
|
||||||
|
|
||||||
ffi_platforms = {
|
ffi_platforms = {
|
||||||
|
|
Loading…
Reference in New Issue