Module: wine Branch: master Commit: ac924566fb72cf8325f9037a81f2666605ffa8ef URL: http://source.winehq.org/git/wine.git/?a=commit;h=ac924566fb72cf8325f9037a81...
Author: Hans Leidekker hans@codeweavers.com Date: Fri Jul 23 09:42:06 2010 +0200
msi/tests: Properly contruct the icon path for win9x.
---
dlls/msi/tests/install.c | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/dlls/msi/tests/install.c b/dlls/msi/tests/install.c index 1d27658..fb78cb4 100644 --- a/dlls/msi/tests/install.c +++ b/dlls/msi/tests/install.c @@ -10045,10 +10045,10 @@ static void test_icon_table(void)
/* win9x with MSI 2.0 installs the icon to a different folder, same as above */ lstrcpyA(win9xpath, APP_DATA_DIR); - lstrcatA(path, "\"); - lstrcatA(path, "Microsoft\Installer\"); - lstrcatA(path, prodcode); - lstrcatA(path, "\testicon"); + lstrcatA(win9xpath, "\"); + lstrcatA(win9xpath, "Microsoft\Installer\"); + lstrcatA(win9xpath, prodcode); + lstrcatA(win9xpath, "\testicon");
lstrcpyA(path, WINDOWS_DIR); lstrcatA(path, "\");