Commit 4fd929b4 authored by Benjamin Peterson's avatar Benjamin Peterson

remove assignment in conditional

parent a16de5db
...@@ -5268,7 +5268,8 @@ socket_getaddrinfo(PyObject *self, PyObject *args, PyObject* kwargs) ...@@ -5268,7 +5268,8 @@ socket_getaddrinfo(PyObject *self, PyObject *args, PyObject* kwargs)
goto err; goto err;
} }
if ((all = PyList_New(0)) == NULL) all = PyList_New(0);
if (all == NULL)
goto err; goto err;
for (res = res0; res; res = res->ai_next) { for (res = res0; res; res = res->ai_next) {
PyObject *single; PyObject *single;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment