From: Yuxuan Shui <yshui(a)codeweavers.com> run_queue already closes the file queue so it shouldn't be closed again. --- dlls/setupapi/tests/install.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/dlls/setupapi/tests/install.c b/dlls/setupapi/tests/install.c index 9f5260359a5..61608946bff 100644 --- a/dlls/setupapi/tests/install.c +++ b/dlls/setupapi/tests/install.c @@ -2289,7 +2289,6 @@ static void test_rename(void) ok(!delete_file("b/five.txt"), "File should not exist.\n"); ok(delete_file("b/six.txt"), "File should exist.\n"); ok(delete_file("b/seven.txt"), "File should exist.\n"); - SetupCloseFileQueue(queue); create_file("a/one.txt"); create_file("a/three.txt"); @@ -2312,7 +2311,6 @@ static void test_rename(void) ok(!delete_file("a/four.txt"), "File should not exist.\n"); ok(!delete_file("a/five.txt"), "File should not exist.\n"); ok(delete_file("a/six.txt"), "File should exist.\n"); - SetupCloseFileQueue(queue); ret = delete_file("a/"); ok(ret, "Failed to delete directory, error %lu.\n", GetLastError()); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/8313