Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Modules/_remote_debugging_module.c
Original file line numberDiff line numberDiff line change
Expand Up@@ -212,6 +212,8 @@ typedef struct {
#endif
} RemoteUnwinderObject;

#define RemoteUnwinder_CAST(op) ((RemoteUnwinderObject *)(op))

typedef struct
{
int lineno;
Expand DownExpand Up@@ -2899,8 +2901,9 @@ static PyMethodDef RemoteUnwinder_methods[] = {
};

static void
RemoteUnwinder_dealloc(RemoteUnwinderObject *self)
RemoteUnwinder_dealloc(PyObject *op)
{
RemoteUnwinderObject *self = RemoteUnwinder_CAST(op);
PyTypeObject *tp = Py_TYPE(self);
if (self->code_object_cache) {
_Py_hashtable_destroy(self->code_object_cache);
Expand Down