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 );