win,pipe: remove unreferenced local variable

PR-URL: https://github.com/libuv/libuv/pull/1858
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Bartosz Sosnowski <bartosz@janeasystems.com>
This commit is contained in:
Bert Belder 2018-05-30 15:15:59 -07:00
parent 6103d294f7
commit bada995129
No known key found for this signature in database
GPG Key ID: 7A77887B2E2ED461

View File

@ -958,7 +958,7 @@ static DWORD WINAPI uv_pipe_zero_readfile_thread_proc(void* arg) {
uv_loop_t* loop = handle->loop;
volatile HANDLE* thread_ptr = &handle->pipe.conn.readfile_thread_handle;
CRITICAL_SECTION* lock = &handle->pipe.conn.readfile_thread_lock;
HANDLE prev, thread;
HANDLE thread;
DWORD bytes;
DWORD err;