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
19e51936
Commit
19e51936
authored
Mar 25, 2015
by
Hans Leidekker
Committed by
Alexandre Julliard
Mar 25, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Skip files from the original media if a patch is applied.
parent
b7453555
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
files.c
dlls/msi/files.c
+5
-0
No files found.
dlls/msi/files.c
View file @
19e51936
...
@@ -77,6 +77,11 @@ static msi_file_state calculate_install_state( MSIPACKAGE *package, MSIFILE *fil
...
@@ -77,6 +77,11 @@ static msi_file_state calculate_install_state( MSIPACKAGE *package, MSIFILE *fil
TRACE
(
"skipping %s (not scheduled for install)
\n
"
,
debugstr_w
(
file
->
File
));
TRACE
(
"skipping %s (not scheduled for install)
\n
"
,
debugstr_w
(
file
->
File
));
return
msifs_skipped
;
return
msifs_skipped
;
}
}
if
(
!
list_empty
(
&
package
->
patches
)
&&
file
->
disk_id
<
MSI_INITIAL_MEDIA_TRANSFORM_DISKID
)
{
TRACE
(
"skipping %s (not part of patch)
\n
"
,
debugstr_w
(
file
->
File
));
return
msifs_skipped
;
}
if
((
comp
->
assembly
&&
!
comp
->
assembly
->
application
&&
!
comp
->
assembly
->
installed
)
||
if
((
comp
->
assembly
&&
!
comp
->
assembly
->
application
&&
!
comp
->
assembly
->
installed
)
||
GetFileAttributesW
(
file
->
TargetPath
)
==
INVALID_FILE_ATTRIBUTES
)
GetFileAttributesW
(
file
->
TargetPath
)
==
INVALID_FILE_ATTRIBUTES
)
{
{
...
...
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