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
f11c8b00
Commit
f11c8b00
authored
Sep 09, 2005
by
Mike McCormack
Committed by
Alexandre Julliard
Sep 09, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reduce the indent level of a function.
parent
22a53326
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
10 deletions
+6
-10
action.c
dlls/msi/action.c
+6
-10
No files found.
dlls/msi/action.c
View file @
f11c8b00
...
...
@@ -1724,14 +1724,12 @@ static UINT ACTION_CostFinalize(MSIPACKAGE *package)
LIST_FOR_EACH_ENTRY
(
file
,
&
package
->
files
,
MSIFILE
,
entry
)
{
MSICOMPONENT
*
comp
=
NULL
;
comp
=
file
->
Component
;
if
(
comp
)
{
MSICOMPONENT
*
comp
=
file
->
Component
;
LPWSTR
p
;
if
(
!
comp
)
continue
;
/* calculate target */
p
=
resolve_folder
(
package
,
comp
->
Directory
,
FALSE
,
FALSE
,
NULL
);
...
...
@@ -1751,9 +1749,9 @@ static UINT ACTION_CostFinalize(MSIPACKAGE *package)
{
file
->
State
=
1
;
comp
->
Cost
+=
file
->
FileSize
;
continue
;
}
else
{
if
(
file
->
Version
)
{
DWORD
handle
;
...
...
@@ -1795,8 +1793,6 @@ static UINT ACTION_CostFinalize(MSIPACKAGE *package)
else
file
->
State
=
3
;
}
}
}
TRACE
(
"Evaluating Condition Table
\n
"
);
...
...
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