Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
6df69c6a
Commit
6df69c6a
authored
Oct 20, 2008
by
James Hawkins
Committed by
Alexandre Julliard
Oct 20, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Fix a copy and paste error.
parent
7eba78dc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
8 deletions
+5
-8
appsearch.c
dlls/msi/appsearch.c
+4
-4
package.c
dlls/msi/tests/package.c
+1
-4
No files found.
dlls/msi/appsearch.c
View file @
6df69c6a
...
...
@@ -651,11 +651,11 @@ static UINT ACTION_FileVersionMatches(const MSISIGNATURE *sig, LPCWSTR filePath,
HIWORD
(
sig
->
MinVersionLS
),
LOWORD
(
sig
->
MinVersionLS
));
}
else
if
(
info
->
dwFileVersionMS
<
sig
->
Min
VersionMS
||
(
info
->
dwFileVersionMS
==
sig
->
M
in
VersionMS
&&
info
->
dwFileVersionLS
<
sig
->
Min
VersionLS
))
else
if
(
info
->
dwFileVersionMS
>
sig
->
Max
VersionMS
||
(
info
->
dwFileVersionMS
==
sig
->
M
ax
VersionMS
&&
info
->
dwFileVersionLS
>
sig
->
Max
VersionLS
))
{
TRACE
(
"Greater than m
in
imum version %d.%d.%d.%d
\n
"
,
TRACE
(
"Greater than m
ax
imum version %d.%d.%d.%d
\n
"
,
HIWORD
(
sig
->
MaxVersionMS
),
LOWORD
(
sig
->
MaxVersionMS
),
HIWORD
(
sig
->
MaxVersionLS
),
...
...
dlls/msi/tests/package.c
View file @
6df69c6a
...
...
@@ -7180,10 +7180,7 @@ static void test_appsearch_drlocator(void)
size
=
MAX_PATH
;
r
=
MsiGetPropertyA
(
hpkg
,
"SIGPROP9"
,
prop
,
&
size
);
ok
(
r
==
ERROR_SUCCESS
,
"Expected ERROR_SUCCESS, got %d
\n
"
,
r
);
todo_wine
{
ok
(
!
lstrcmpA
(
prop
,
""
),
"Expected
\"\"
, got
\"
%s
\"\n
"
,
prop
);
}
ok
(
!
lstrcmpA
(
prop
,
""
),
"Expected
\"\"
, got
\"
%s
\"\n
"
,
prop
);
size
=
MAX_PATH
;
r
=
MsiGetPropertyA
(
hpkg
,
"SIGPROP10"
,
prop
,
&
size
);
...
...
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