ext/libuv/src/win/getaddrinfo.c in libuv-1.1.3 vs ext/libuv/src/win/getaddrinfo.c in libuv-1.2.0
- old
+ new
@@ -294,10 +294,10 @@
/* save alloc_ptr now so we can free if error */
req->alloc = (void*)alloc_ptr;
/* convert node string to UTF16 into allocated memory and save pointer in */
- /* the reques. */
+ /* the request. */
if (node != NULL) {
req->node = (WCHAR*)alloc_ptr;
if (uv_utf8_to_utf16(node,
(WCHAR*) alloc_ptr,
nodesize / sizeof(WCHAR)) == 0) {