Closed cjihrig closed 10 years ago
Seems there are several locations where WSAGetLastError()
is returned. Think those should be wrapped as well?
@trevnorris all functions that return values to the user should have the value translated, but on Windows not all functions return directly, so translation happens later on.
Thanks Colin! Landed in 416b733
Thanks. #1518 can probably be closed too I think.
Currently,
uv_poll_init()
returns the result ofWSAGetLastError()
on error. This commit wraps the error with a call touv_translate_sys_error()
.Closes #1518