mirror of
https://github.com/libuv/libuv
synced 2025-03-28 21:13:16 +00:00
win: fix watching root files
When passing "\\?\C:" to CreateFile, it opens the drive rather than the root directory. So include the trailing backslash in the directory name. Fixes: https://github.com/nodejs/node/issues/4643 PR-URL: https://github.com/libuv/libuv/pull/689 Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail.com>
This commit is contained in:
parent
a0b56059cf
commit
3c59ad6d95
@ -101,12 +101,12 @@ static int uv_split_path(const WCHAR* filename, WCHAR** dir,
|
||||
*file = wcsdup(filename);
|
||||
} else {
|
||||
if (dir) {
|
||||
*dir = (WCHAR*)uv__malloc((i + 1) * sizeof(WCHAR));
|
||||
*dir = (WCHAR*)uv__malloc((i + 2) * sizeof(WCHAR));
|
||||
if (!*dir) {
|
||||
uv_fatal_error(ERROR_OUTOFMEMORY, "uv__malloc");
|
||||
}
|
||||
wcsncpy(*dir, filename, i);
|
||||
(*dir)[i] = L'\0';
|
||||
wcsncpy(*dir, filename, i + 1);
|
||||
(*dir)[i + 1] = L'\0';
|
||||
}
|
||||
|
||||
*file = (WCHAR*)uv__malloc((len - i) * sizeof(WCHAR));
|
||||
|
@ -531,6 +531,33 @@ TEST_IMPL(fs_event_watch_file_current_dir) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
#ifdef _WIN32
|
||||
TEST_IMPL(fs_event_watch_file_root_dir) {
|
||||
uv_loop_t* loop;
|
||||
int r;
|
||||
|
||||
const char* sys_drive = getenv("SystemDrive");
|
||||
char path[] = "\\\\?\\X:\\bootsect.bak";
|
||||
|
||||
ASSERT(sys_drive != NULL);
|
||||
strncpy(path + sizeof("\\\\?\\") - 1, sys_drive, 1);
|
||||
|
||||
loop = uv_default_loop();
|
||||
|
||||
r = uv_fs_event_init(loop, &fs_event);
|
||||
ASSERT(r == 0);
|
||||
r = uv_fs_event_start(&fs_event, fail_cb, path, 0);
|
||||
if (r == UV_ENOENT)
|
||||
RETURN_SKIP("bootsect.bak doesn't exist in system root.\n");
|
||||
ASSERT(r == 0);
|
||||
|
||||
uv_close(&fs_event, NULL);
|
||||
|
||||
MAKE_VALGRIND_HAPPY();
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
TEST_IMPL(fs_event_no_callback_after_close) {
|
||||
uv_loop_t* loop = uv_default_loop();
|
||||
int r;
|
||||
|
@ -270,6 +270,9 @@ TEST_DECLARE (fs_event_watch_dir_recursive)
|
||||
TEST_DECLARE (fs_event_watch_file)
|
||||
TEST_DECLARE (fs_event_watch_file_twice)
|
||||
TEST_DECLARE (fs_event_watch_file_current_dir)
|
||||
#ifdef _WIN32
|
||||
TEST_DECLARE (fs_event_watch_file_root_dir)
|
||||
#endif
|
||||
TEST_DECLARE (fs_event_no_callback_after_close)
|
||||
TEST_DECLARE (fs_event_no_callback_on_close)
|
||||
TEST_DECLARE (fs_event_immediate_close)
|
||||
@ -698,6 +701,9 @@ TASK_LIST_START
|
||||
TEST_ENTRY (fs_event_watch_file)
|
||||
TEST_ENTRY (fs_event_watch_file_twice)
|
||||
TEST_ENTRY (fs_event_watch_file_current_dir)
|
||||
#ifdef _WIN32
|
||||
TEST_ENTRY (fs_event_watch_file_root_dir)
|
||||
#endif
|
||||
TEST_ENTRY (fs_event_no_callback_after_close)
|
||||
TEST_ENTRY (fs_event_no_callback_on_close)
|
||||
TEST_ENTRY (fs_event_immediate_close)
|
||||
|
Loading…
x
Reference in New Issue
Block a user