summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Modules/sunaudiodev.c1
-rw-r--r--Python/thread_pthread.h2
2 files changed, 2 insertions, 1 deletions
diff --git a/Modules/sunaudiodev.c b/Modules/sunaudiodev.c
index 7bf867bcb2..e4c4c9f42a 100644
--- a/Modules/sunaudiodev.c
+++ b/Modules/sunaudiodev.c
@@ -103,6 +103,7 @@ newsadobject(PyObject *args)
}
if (fd < 0) {
PyErr_SetFromErrnoWithFilename(SunAudioError, opendev);
+ PyMem_DEL(ctldev);
return NULL;
}
PyMem_DEL(ctldev);
diff --git a/Python/thread_pthread.h b/Python/thread_pthread.h
index 0fbafdafc7..6c2bbfd3e7 100644
--- a/Python/thread_pthread.h
+++ b/Python/thread_pthread.h
@@ -200,7 +200,7 @@ PyThread_start_new_thread(void (*func)(void *), void *arg)
/* Restore signal mask for original thread */
SET_THREAD_SIGMASK(SIG_SETMASK, &oldmask, NULL);
-#ifdef THREAD_STACK_SIZE
+#if defined(THREAD_STACK_SIZE) || defined(PTHREAD_SYSTEM_SCHED_SUPPORTED)
pthread_attr_destroy(&attrs);
#endif
if (success == 0) {