Commit 83c470a4 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

David Byron pointed out that this -1 on the buffer size is pointless since

the buffer is already BUFSIZE +1 one big to fit the extra trailing zero. This
change is reported to fix David's weird SSL problem...
parent ab96e2d6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -285,7 +285,7 @@ CURLcode Curl_readwrite(struct connectdata *conn,
         read or we get a EWOULDBLOCK */
      do {
        size_t buffersize = data->set.buffer_size?
          data->set.buffer_size:BUFSIZE -1;
          data->set.buffer_size:BUFSIZE;

        /* receive data from the network! */
        int readrc = Curl_read(conn, conn->sockfd, k->buf, buffersize, &nread);