Ticket #9723: read_until.patch

File read_until.patch, 390 bytes (added by anonymous, 9 years ago)

patch that fixes the issue

  • boost/asio/impl/read_until.hpp

    old new  
    410410          }
    411411
    412412          // Check if we're done.
    413           if (!start && bytes_to_read == 0)
     413          if (bytes_to_read == 0)
    414414            break;
    415415
    416416          // Start a new asynchronous read operation to obtain more data.