From 6a451dce26d8e5369c79f455f105e0c46ddc8bcb Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Tue, 16 Jun 2009 20:33:45 +0000 Subject: * fhandler.cc (fhandler_base::read_overlapped): Use a better variable name. --- winsup/cygwin/fhandler.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'winsup/cygwin/fhandler.cc') diff --git a/winsup/cygwin/fhandler.cc b/winsup/cygwin/fhandler.cc index 16ec8114d..b8aa0dd80 100644 --- a/winsup/cygwin/fhandler.cc +++ b/winsup/cygwin/fhandler.cc @@ -1772,16 +1772,16 @@ fhandler_base::wait_overlapped (bool inres, bool writing, DWORD *bytes, DWORD le void fhandler_base::read_overlapped (void *ptr, size_t& len) { - DWORD bytes_written; + DWORD bytes_read; while (1) { - bool res = ReadFile (get_handle (), ptr, len, &bytes_written, + bool res = ReadFile (get_handle (), ptr, len, &bytes_read, get_overlapped ()); - int wres = wait_overlapped (res, false, &bytes_written); + int wres = wait_overlapped (res, false, &bytes_read); if (wres || !_my_tls.call_signal_handler ()) break; } - len = (size_t) bytes_written; + len = (size_t) bytes_read; } int -- cgit v1.2.3