[PATCH] winetest: Fix handling of relative -d directories.

Francois Gouget fgouget at codeweavers.com
Mon Jul 26 04:55:45 CDT 2021


Convert them to an absolute path so they result in a command line which 
is still valid after changing the current directory in CreateProcess().

Signed-off-by: Francois Gouget <fgouget at codeweavers.com>
---
 programs/winetest/main.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/programs/winetest/main.c b/programs/winetest/main.c
index fa773e28d4f..7ced565447b 100644
--- a/programs/winetest/main.c
+++ b/programs/winetest/main.c
@@ -1066,7 +1066,10 @@ run_tests (char *logname, char *outdir)
         report (R_FATAL, "Could not open logfile: %u", GetLastError());
 
     if (outdir)
-        strcpy( tempdir, outdir);
+    {
+        /* Get a full path so it is still valid after a chdir */
+        GetFullPathNameA( outdir, ARRAY_SIZE(tempdir), tempdir, NULL );
+    }
     else
     {
         strcpy( tempdir, tmppath );
-- 
2.20.1



More information about the wine-devel mailing list