Skip to content

Commit 7ec2dd6

Browse files
Update Modules/socketmodule.c
Co-authored-by: Victor Stinner <vstinner@python.org>
1 parent fb99129 commit 7ec2dd6

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Modules/socketmodule.c

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5003,9 +5003,7 @@ _socket_socket_sendmsg_impl(PySocketSockObject *s, PyObject *data_arg,
50035003
controllen = controllen_last = 0;
50045004
while (ncmsgbufs < ncmsgs) {
50055005
size_t bufsize, space;
5006-
PyObject *item;
5007-
5008-
item = PyTuple_GET_ITEM(cmsg_fast, ncmsgbufs);
5006+
PyObject *item = PyTuple_GET_ITEM(cmsg_fast, ncmsgbufs);
50095007

50105008
if (!PyArg_Parse(item,
50115009
"(iiy*):[sendmsg() ancillary data items]",

0 commit comments

Comments
 (0)