mirror of https://github.com/python/cpython.git
gh-111178: fix UBSan failures in `Modules/_multiprocessing/semaphore.c` (#129084)
fix UBSan failures for `SemLockObject`
This commit is contained in:
parent
382340d559
commit
5ed5572cac
|
@ -28,6 +28,8 @@ typedef struct {
|
|||
char *name;
|
||||
} SemLockObject;
|
||||
|
||||
#define _SemLockObject_CAST(op) ((SemLockObject *)(op))
|
||||
|
||||
/*[python input]
|
||||
class SEM_HANDLE_converter(CConverter):
|
||||
type = "SEM_HANDLE"
|
||||
|
@ -576,8 +578,9 @@ _multiprocessing_SemLock__rebuild_impl(PyTypeObject *type, SEM_HANDLE handle,
|
|||
}
|
||||
|
||||
static void
|
||||
semlock_dealloc(SemLockObject* self)
|
||||
semlock_dealloc(PyObject *op)
|
||||
{
|
||||
SemLockObject *self = _SemLockObject_CAST(op);
|
||||
PyTypeObject *tp = Py_TYPE(self);
|
||||
PyObject_GC_UnTrack(self);
|
||||
if (self->handle != SEM_FAILED)
|
||||
|
@ -718,7 +721,7 @@ _multiprocessing_SemLock___exit___impl(SemLockObject *self,
|
|||
}
|
||||
|
||||
static int
|
||||
semlock_traverse(SemLockObject *s, visitproc visit, void *arg)
|
||||
semlock_traverse(PyObject *s, visitproc visit, void *arg)
|
||||
{
|
||||
Py_VISIT(Py_TYPE(s));
|
||||
return 0;
|
||||
|
|
Loading…
Reference in New Issue