8000 gh-111178: fix UBSan failures for `Modules/_testmultiphase.c` by picnixz · Pull Request #131615 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-111178: fix UBSan failures for Modules/_testmultiphase.c #131615

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Mar 24, 2025
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fixup
  • Loading branch information
picnixz committed Mar 20, 2025
commit 386ecefcf0e655de986c2324761b9b18eaf352e0
2 changes: 1 addition & 1 deletion Modules/_testmultiphase.c
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ Example_getattro(PyObject *op, PyObject *name)
}

static int
Example_setattr(PyObject *op, const char *name, PyObject *v)
Example_setattr(PyObject *op, char *name, PyObject *v)
{
ExampleObject *self = ExampleObject_CAST(op);
if (self->x_attr == NULL) {
Expand Down
0