Browse Source

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

Victor Stinner 11 years ago
parent
commit
a135cb8143
  1. 1
      Modules/socketmodule.c

1
Modules/socketmodule.c

@ -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;

Loading…
Cancel
Save