1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00

win,fs: remove trailing slash in junctions

Fixes: https://github.com/libuv/libuv/issues/3329
This commit is contained in:
Hüseyin Açacak 2024-10-10 09:09:53 +03:00 committed by Saúl Ibarra Corretgé
parent be0b00a80d
commit fbe2d85bd5
2 changed files with 4 additions and 5 deletions

View File

@ -2566,7 +2566,6 @@ static void fs__create_junction(uv_fs_t* req, const WCHAR* path,
path_buf[path_buf_len++] = path[i];
}
path_buf[path_buf_len++] = L'\\';
len = path_buf_len - start;
/* Set the info about the substitute name */

View File

@ -2379,8 +2379,8 @@ int test_symlink_dir_impl(int type) {
strcpy(test_dir_abs_buf, "\\\\?\\");
uv_cwd(test_dir_abs_buf + 4, &test_dir_abs_size);
test_dir_abs_size += 4;
strcat(test_dir_abs_buf, "\\test_dir\\");
test_dir_abs_size += strlen("\\test_dir\\");
strcat(test_dir_abs_buf, "\\test_dir");
test_dir_abs_size += strlen("\\test_dir");
test_dir = test_dir_abs_buf;
#else
uv_cwd(test_dir_abs_buf, &test_dir_abs_size);
@ -2435,8 +2435,8 @@ int test_symlink_dir_impl(int type) {
r = uv_fs_realpath(NULL, &req, "test_dir_symlink", NULL);
ASSERT_OK(r);
#ifdef _WIN32
ASSERT_EQ(strlen(req.ptr), test_dir_abs_size - 5);
ASSERT_OK(_strnicmp(req.ptr, test_dir + 4, test_dir_abs_size - 5));
ASSERT_EQ(strlen(req.ptr), test_dir_abs_size - 4);
ASSERT_OK(_strnicmp(req.ptr, test_dir + 4, test_dir_abs_size - 4));
#else
ASSERT_OK(strcmp(req.ptr, test_dir_abs_buf));
#endif