Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
35c65cf7
Commit
35c65cf7
authored
Mar 10, 2005
by
Juan Lang
Committed by
Alexandre Julliard
Mar 10, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a regression in AppSearch.
parent
3d4ce5c2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
appsearch.c
dlls/msi/appsearch.c
+3
-1
No files found.
dlls/msi/appsearch.c
View file @
35c65cf7
...
@@ -629,7 +629,7 @@ static BOOL ACTION_IsFullPath(LPCWSTR path)
...
@@ -629,7 +629,7 @@ static BOOL ACTION_IsFullPath(LPCWSTR path)
WCHAR
first
=
toupperW
(
path
[
0
]);
WCHAR
first
=
toupperW
(
path
[
0
]);
BOOL
ret
;
BOOL
ret
;
if
(
first
>=
'A'
&&
first
<=
'
A
'
&&
path
[
1
]
==
':'
)
if
(
first
>=
'A'
&&
first
<=
'
Z
'
&&
path
[
1
]
==
':'
)
ret
=
TRUE
;
ret
=
TRUE
;
else
if
(
path
[
0
]
==
'\\'
&&
path
[
1
]
==
'\\'
)
else
if
(
path
[
0
]
==
'\\'
&&
path
[
1
]
==
'\\'
)
ret
=
TRUE
;
ret
=
TRUE
;
...
@@ -644,6 +644,7 @@ static UINT ACTION_SearchDirectory(MSIPACKAGE *package, MSISIGNATURE *sig,
...
@@ -644,6 +644,7 @@ static UINT ACTION_SearchDirectory(MSIPACKAGE *package, MSISIGNATURE *sig,
UINT
rc
;
UINT
rc
;
BOOL
found
;
BOOL
found
;
TRACE
(
"%p, %p, %s, %d
\n
"
,
package
,
sig
,
debugstr_w
(
expanded
),
depth
);
if
(
ACTION_IsFullPath
(
expanded
))
if
(
ACTION_IsFullPath
(
expanded
))
{
{
if
(
sig
->
File
)
if
(
sig
->
File
)
...
@@ -681,6 +682,7 @@ static UINT ACTION_SearchDirectory(MSIPACKAGE *package, MSISIGNATURE *sig,
...
@@ -681,6 +682,7 @@ static UINT ACTION_SearchDirectory(MSIPACKAGE *package, MSISIGNATURE *sig,
}
}
}
}
}
}
TRACE
(
"returning %d
\n
"
,
rc
);
return
rc
;
return
rc
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment