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
4553d0fd
Commit
4553d0fd
authored
Aug 21, 2008
by
James Hawkins
Committed by
Alexandre Julliard
Aug 21, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Remove an invalid setting of the install state.
parent
39b87470
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
3 deletions
+4
-3
action.c
dlls/msi/action.c
+0
-2
install.c
dlls/msi/tests/install.c
+4
-1
package.c
dlls/msi/tests/package.c
+0
-0
No files found.
dlls/msi/action.c
View file @
4553d0fd
...
...
@@ -2116,7 +2116,6 @@ static UINT msi_check_file_install_states( MSIPACKAGE *package )
{
file
->
state
=
msifs_missing
;
comp
->
Cost
+=
file
->
FileSize
;
comp
->
Installed
=
INSTALLSTATE_INCOMPLETE
;
continue
;
}
...
...
@@ -2130,7 +2129,6 @@ static UINT msi_check_file_install_states( MSIPACKAGE *package )
{
file
->
state
=
msifs_overwrite
;
comp
->
Cost
+=
file
->
FileSize
;
comp
->
Installed
=
INSTALLSTATE_INCOMPLETE
;
}
else
file
->
state
=
msifs_present
;
...
...
dlls/msi/tests/install.c
View file @
4553d0fd
...
...
@@ -3482,7 +3482,10 @@ static void test_publish(void)
/* complete install */
r
=
MsiInstallProductA
(
msifile
,
"FULL=1"
);
ok
(
r
==
ERROR_SUCCESS
,
"Expected ERROR_SUCCESS, got %d
\n
"
,
r
);
ok
(
pf_exists
(
"msitest
\\
maximus"
),
"File not installed
\n
"
);
todo_wine
{
ok
(
pf_exists
(
"msitest
\\
maximus"
),
"File not installed
\n
"
);
}
ok
(
pf_exists
(
"msitest"
),
"File not installed
\n
"
);
state
=
MsiQueryProductState
(
"{7DF88A48-996F-4EC8-A022-BF956F9B2CBB}"
);
...
...
dlls/msi/tests/package.c
View file @
4553d0fd
This diff is collapsed.
Click to expand it.
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