Skip to content

Commit c634b91

Browse files
committed
fix #104190
1 parent d012237 commit c634b91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_testcapimodule.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -4222,7 +4222,7 @@ PyInit__testcapi(void)
42224222
return NULL;
42234223
}
42244224
int ret = PyModule_AddType(m, (PyTypeObject*)ObjExtraData_Type);
4225-
Py_DECREF(&ObjExtraData_Type);
4225+
Py_DECREF(ObjExtraData_Type);
42264226
if (ret < 0) {
42274227
return NULL;
42284228
}

0 commit comments

Comments
 (0)