mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
socket: use INVALID_SOCKET
* Replace "fd = -1" with "fd = INVALID_SOCKET" * Replace "fd < 0" with "fd == INVALID_SOCKET": SOCKET_T is unsigned on Windows Bug found by Pavel Belikov ("Fragment N1"): http://www.viva64.com/en/b/0414/#ID0ECDAE
This commit is contained in:
parent
0cec877230
commit
524714eeda
2 changed files with 12 additions and 7 deletions
|
@ -113,6 +113,10 @@ struct py_ssl_library_code {
|
|||
# define HAVE_ALPN
|
||||
#endif
|
||||
|
||||
#ifndef INVALID_SOCKET /* MS defines this */
|
||||
#define INVALID_SOCKET (-1)
|
||||
#endif
|
||||
|
||||
enum py_ssl_error {
|
||||
/* these mirror ssl.h */
|
||||
PY_SSL_ERROR_NONE,
|
||||
|
@ -1699,7 +1703,7 @@ PySSL_select(PySocketSockObject *s, int writing, _PyTime_t timeout)
|
|||
}
|
||||
|
||||
/* Guard against closed socket */
|
||||
if (s->sock_fd < 0)
|
||||
if (s->sock_fd == INVALID_SOCKET)
|
||||
return SOCKET_HAS_BEEN_CLOSED;
|
||||
|
||||
/* Prefer poll, if available, since you can poll() any fd
|
||||
|
@ -2023,7 +2027,7 @@ _ssl__SSLSocket_shutdown_impl(PySSLSocket *self)
|
|||
|
||||
if (sock != NULL) {
|
||||
/* Guard against closed socket */
|
||||
if ((((PyObject*)sock) == Py_None) || (sock->sock_fd < 0)) {
|
||||
if ((((PyObject*)sock) == Py_None) || (sock->sock_fd == INVALID_SOCKET)) {
|
||||
_setSSLError("Underlying socket connection gone",
|
||||
PY_SSL_ERROR_NO_SOCKET, __FILE__, __LINE__);
|
||||
return NULL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue