Skip to content
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

gh-109534: switch from sock_call to sock_call_ex in sock_send #114311

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion Modules/socketmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -4341,6 +4341,7 @@ static PyObject *
sock_send(PySocketSockObject *s, PyObject *args)
{
int flags = 0;
int err;
Py_buffer pbuf;
struct sock_send ctx;

Expand All @@ -4354,7 +4355,7 @@ sock_send(PySocketSockObject *s, PyObject *args)
ctx.buf = pbuf.buf;
ctx.len = pbuf.len;
ctx.flags = flags;
if (sock_call(s, 1, sock_send_impl, &ctx) < 0) {
if (sock_call_ex(s, 1, sock_send_impl, &ctx, 0, &err, s->sock_timeout) < 0) {
PyBuffer_Release(&pbuf);
return NULL;
}
Expand Down