File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -64,6 +64,7 @@ typedef struct {
6464static PyTypeObject PySSL_Type ;
6565static PyObject * PySSL_SSLwrite (PySSLObject * self , PyObject * args );
6666static PyObject * PySSL_SSLread (PySSLObject * self , PyObject * args );
67+ static int wait_for_timeout (PySocketSockObject * s , int writing );
6768
6869#define PySSLObject_Check (v ) ((v)->ob_type == &PySSL_Type)
6970
Original file line number Diff line number Diff line change @@ -2916,7 +2916,7 @@ load_counted_long(Unpicklerobject *self, int size)
29162916 along = PyLong_FromLong (0L );
29172917 else {
29182918 /* Read the raw little-endian bytes & convert. */
2919- i = self -> read_func (self , & (char * ) pdata , size );
2919+ i = self -> read_func (self , (char * * ) & pdata , size );
29202920 if (i < 0 ) return -1 ;
29212921 along = _PyLong_FromByteArray (pdata , (size_t )size ,
29222922 1 /* little endian */ , 1 /* signed */ );
You can’t perform that action at this time.
0 commit comments