Skip to content

Commit 4703c2b

Browse files
restore spacing style for controllen calculation
1 parent be7371d commit 4703c2b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Modules/socketmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5022,7 +5022,7 @@ _socket_socket_sendmsg_impl(PySocketSockObject *s, PyObject *data_arg,
50225022
PyErr_SetString(PyExc_OSError, "ancillary data item too large");
50235023
goto finally;
50245024
}
5025-
controllen+=space;
5025+
controllen += space;
50265026
if (controllen > SOCKLEN_T_LIMIT || controllen < controllen_last) {
50275027
PyErr_SetString(PyExc_OSError, "too much ancillary data");
50285028
goto finally;

0 commit comments

Comments
 (0)