Issue #23618: Ooops, remove abort() added for debug purpose

This commit is contained in:
Victor Stinner 2015-04-02 15:17:12 +02:00
parent 38aec7525e
commit a135cb8143

View file

@ -2592,7 +2592,6 @@ sock_connect_impl(PySocketSockObject *s, void* Py_UNUSED(data))
if (err != 0) {
/* sock_call_ex() uses GET_SOCK_ERROR() to get the error code */
SET_SOCK_ERROR(err);
abort();
return 0;
}
return 1;