summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--deps/uv/src/win/fs.c3
-rw-r--r--deps/uv/test/runner-win.c8
2 files changed, 11 insertions, 0 deletions
diff --git a/deps/uv/src/win/fs.c b/deps/uv/src/win/fs.c
index 4a2d93624d..9b920c817a 100644
--- a/deps/uv/src/win/fs.c
+++ b/deps/uv/src/win/fs.c
@@ -1137,9 +1137,12 @@ static void fs__utime(uv_fs_t* req) {
if (fs__utime_handle(handle, req->atime, req->mtime) != 0) {
SET_REQ_WIN32_ERROR(req, GetLastError());
+ CloseHandle(handle);
return;
}
+ CloseHandle(handle);
+
req->result = 0;
}
diff --git a/deps/uv/test/runner-win.c b/deps/uv/test/runner-win.c
index ad36719c8f..0a9690e774 100644
--- a/deps/uv/test/runner-win.c
+++ b/deps/uv/test/runner-win.c
@@ -25,6 +25,10 @@
#include <stdio.h>
#include <process.h>
#include <windows.h>
+#if !defined(__MINGW32__)
+#include <crtdbg.h>
+#endif
+
#include "task.h"
#include "runner.h"
@@ -44,6 +48,10 @@ void platform_init(int argc, char **argv) {
/* Disable the "application crashed" popup. */
SetErrorMode(SEM_FAILCRITICALERRORS | SEM_NOGPFAULTERRORBOX |
SEM_NOOPENFILEERRORBOX);
+#if !defined(__MINGW32__)
+ _CrtSetReportMode(_CRT_ASSERT, _CRTDBG_MODE_DEBUG);
+ _CrtSetReportMode(_CRT_ERROR, _CRTDBG_MODE_DEBUG);
+#endif
_setmode(0, _O_BINARY);
_setmode(1, _O_BINARY);