| commit | 1da2fbce95fde8c2fffd099430ce746b9d59c468 | [log] [tgz] |
|---|---|---|
| author | Mike McCormack <mike@codeweavers.com> | Wed Apr 19 02:28:05 2006 +0900 |
| committer | Alexandre Julliard <julliard@winehq.org> | Tue Apr 18 21:13:39 2006 +0200 |
| tree | 81eae61db433c4d5d0c02528d0a836166800d303 | |
| parent | 67394207a9af5429758b53bd22ad0dbf6664f433 [diff] |
msi: Don't fall back to the folder's parent if the folder doesn't exist.
diff --git a/dlls/msi/helpers.c b/dlls/msi/helpers.c index 9eadcfd..6d3d7e3 100644 --- a/dlls/msi/helpers.c +++ b/dlls/msi/helpers.c
@@ -380,17 +380,6 @@ } } - /* try the parent folder's path */ - if (!path) - { - path = strdupW(p); - if (INVALID_FILE_ATTRIBUTES == GetFileAttributesW( path )) - { - msi_free( path ); - path = NULL; - } - } - /* try the root of the install */ if (!path) path = get_source_root( package );