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
b1b32529
Commit
b1b32529
authored
Nov 16, 2010
by
Hans Leidekker
Committed by
Alexandre Julliard
Nov 16, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Check component attributes before extracting the cabinet.
parent
47dea9b6
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
12 deletions
+12
-12
files.c
dlls/msi/files.c
+12
-12
No files found.
dlls/msi/files.c
View file @
b1b32529
...
...
@@ -66,15 +66,23 @@ static void schedule_install_files(MSIPACKAGE *package)
LIST_FOR_EACH_ENTRY
(
file
,
&
package
->
files
,
MSIFILE
,
entry
)
{
if
(
file
->
Component
->
ActionRequest
!=
INSTALLSTATE_LOCAL
||
!
file
->
Component
->
Enabled
)
MSICOMPONENT
*
comp
=
file
->
Component
;
if
(
comp
->
ActionRequest
!=
INSTALLSTATE_LOCAL
||
!
comp
->
Enabled
)
{
TRACE
(
"File %s is not scheduled for install
\n
"
,
debugstr_w
(
file
->
File
));
file
->
state
=
msifs_skipped
;
continue
;
}
comp
->
Action
=
INSTALLSTATE_LOCAL
;
ui_progress
(
package
,
2
,
file
->
FileSize
,
0
,
0
);
ui_progress
(
package
,
2
,
file
->
FileSize
,
0
,
0
);
if
(
file
->
state
==
msifs_overwrite
&&
(
comp
->
Attributes
&
msidbComponentAttributesNeverOverwrite
))
{
TRACE
(
"not overwriting %s
\n
"
,
debugstr_w
(
file
->
TargetPath
));
file
->
state
=
msifs_skipped
;
}
else
file
->
Component
->
Action
=
INSTALLSTATE_LOCAL
;
}
}
...
...
@@ -228,14 +236,6 @@ UINT ACTION_InstallFiles(MSIPACKAGE *package)
if
(
file
->
state
!=
msifs_missing
&&
!
mi
->
is_continuous
&&
file
->
state
!=
msifs_overwrite
)
continue
;
if
(
file
->
state
==
msifs_overwrite
&&
(
file
->
Component
->
Attributes
&
msidbComponentAttributesNeverOverwrite
))
{
TRACE
(
"not overwriting %s
\n
"
,
debugstr_w
(
file
->
TargetPath
));
file
->
state
=
msifs_skipped
;
continue
;
}
if
(
file
->
Sequence
>
mi
->
last_sequence
||
mi
->
is_continuous
||
(
file
->
IsCompressed
&&
!
mi
->
is_extracted
))
{
...
...
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