Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 1630345

Browse filesBrowse files
authored
gh-104190: fix ubsan crash (#104191)
1 parent e5b8b19 commit 1630345
Copy full SHA for 1630345

File tree

1 file changed

+1
-1
lines changed
Filter options

1 file changed

+1
-1
lines changed

‎Modules/_testcapimodule.c

Copy file name to clipboardExpand all lines: Modules/_testcapimodule.c
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4221,7 +4221,7 @@ PyInit__testcapi(void)
42214221
return NULL;
42224222
}
42234223
int ret = PyModule_AddType(m, (PyTypeObject*)ObjExtraData_Type);
4224-
Py_DECREF(&ObjExtraData_Type);
4224+
Py_DECREF(ObjExtraData_Type);
42254225
if (ret < 0) {
42264226
return NULL;
42274227
}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.