Commit 454422d6 authored by Aric Stewart's avatar Aric Stewart Committed by Alexandre Julliard

Make sure to include trailing backslash in path.

parent d792a6af
...@@ -2189,7 +2189,7 @@ static LPWSTR resolve_folder(MSIPACKAGE *package, LPCWSTR name, ...@@ -2189,7 +2189,7 @@ static LPWSTR resolve_folder(MSIPACKAGE *package, LPCWSTR name,
{ {
p = strrchrW(path,'\\'); p = strrchrW(path,'\\');
if (p) if (p)
*p++ = 0; *(p+1) = 0;
} }
} }
if (folder) if (folder)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment