diff options
author | Michele Calgaro <[email protected]> | 2024-01-26 11:47:26 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-31 18:28:22 +0900 |
commit | 5e77787cf313225a950f7400b21c7db9f673a3c8 (patch) | |
tree | 5084e2d40fe84f9df4967248b2c4746e3b446462 /siplib | |
parent | 18bbe17324adf762d25334d1a072989ac296f728 (diff) | |
download | sip4-tqt-5e77787cf313225a950f7400b21c7db9f673a3c8.tar.gz sip4-tqt-5e77787cf313225a950f7400b21c7db9f673a3c8.zip |
Fix SEGV on exit when using python 3.12 and raise minimum required version to 3.4.
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit bce54982a6bf61d292f293127118a5010260b63e)
Diffstat (limited to 'siplib')
-rw-r--r-- | siplib/sip-tqt.h | 4 | ||||
-rw-r--r-- | siplib/siplib.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/siplib/sip-tqt.h b/siplib/sip-tqt.h index 02585cd..b2c6e52 100644 --- a/siplib/sip-tqt.h +++ b/siplib/sip-tqt.h @@ -46,8 +46,8 @@ extern "C" { /* Sanity check on the Python version. */ -#if PY_VERSION_HEX < 0x03030000 -#error "This version of SIP-TQt requires Python v3.3 or later" +#if PY_VERSION_HEX < 0x03040000 +#error "This version of SIP-TQt requires Python v3.4 or later" #endif diff --git a/siplib/siplib.c b/siplib/siplib.c index c58a47a..b891f79 100644 --- a/siplib/siplib.c +++ b/siplib/siplib.c @@ -1610,7 +1610,7 @@ void *sip_api_malloc(size_t nbytes) { void *mem; - if ((mem = PyMem_Malloc(nbytes)) == NULL) + if ((mem = PyMem_RawMalloc(nbytes)) == NULL) PyErr_NoMemory(); return mem; @@ -1622,7 +1622,7 @@ void *sip_api_malloc(size_t nbytes) */ void sip_api_free(void *mem) { - PyMem_Free(mem); + PyMem_RawFree(mem); } |