From 92571d8d39f48e2b8c749647c51a83992e1f11fb Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Mon, 11 Jun 2007 20:20:02 +0200 Subject: [PATCH] shell32: Fix contents of string returned in load_path. --- dlls/shell32/xdg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/shell32/xdg.c b/dlls/shell32/xdg.c index 6521232ae4f..108d92abc19 100644 --- a/dlls/shell32/xdg.c +++ b/dlls/shell32/xdg.c @@ -113,7 +113,7 @@ static char *load_path(int path_id) ret = SHAlloc(strlen(paths[path_id].default_value)+1); if (ret != NULL) - lstrcpyA(ret, env); + lstrcpyA(ret, paths[path_id].default_value); return ret; }