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
fe8cd388
Commit
fe8cd388
authored
Mar 09, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Mar 09, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Remove some unnecessary indent.
parent
0b9960a1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
10 deletions
+9
-10
action.c
dlls/msi/action.c
+9
-10
No files found.
dlls/msi/action.c
View file @
fe8cd388
...
...
@@ -2557,18 +2557,19 @@ static UINT ACTION_ProcessComponents(MSIPACKAGE *package)
rc
=
MSIREG_OpenComponents
(
&
hkey
);
if
(
rc
!=
ERROR_SUCCESS
)
goto
end
;
return
rc
;
squash_guid
(
package
->
ProductCode
,
squished_pc
);
ui_progress
(
package
,
1
,
COMPONENT_PROGRESS_VALUE
,
1
,
0
);
LIST_FOR_EACH_ENTRY
(
comp
,
&
package
->
components
,
MSICOMPONENT
,
entry
)
{
ui_progress
(
package
,
2
,
0
,
0
,
0
);
if
(
comp
->
ComponentId
)
{
MSIRECORD
*
uirow
;
ui_progress
(
package
,
2
,
0
,
0
,
0
);
if
(
!
comp
->
ComponentId
)
continue
;
squash_guid
(
comp
->
ComponentId
,
squished_cc
);
msi_free
(
comp
->
FullKeypath
);
...
...
@@ -2592,8 +2593,9 @@ static UINT ACTION_ProcessComponents(MSIPACKAGE *package)
if
(
rc
!=
ERROR_SUCCESS
)
continue
;
if
(
comp
->
FullKeypath
)
{
if
(
!
comp
->
FullKeypath
)
continue
;
msi_reg_set_val_str
(
hkey2
,
squished_pc
,
comp
->
FullKeypath
);
if
(
comp
->
Attributes
&
msidbComponentAttributesPermanent
)
...
...
@@ -2601,7 +2603,7 @@ static UINT ACTION_ProcessComponents(MSIPACKAGE *package)
static
const
WCHAR
szPermKey
[]
=
{
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
0
};
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
0
};
msi_reg_set_val_str
(
hkey2
,
szPermKey
,
comp
->
FullKeypath
);
}
...
...
@@ -2616,7 +2618,6 @@ static UINT ACTION_ProcessComponents(MSIPACKAGE *package)
ui_actiondata
(
package
,
szProcessComponents
,
uirow
);
msiobj_release
(
&
uirow
->
hdr
);
}
}
else
if
(
ACTION_VerifyComponentForAction
(
comp
,
INSTALLSTATE_ABSENT
))
{
DWORD
res
;
...
...
@@ -2641,8 +2642,6 @@ static UINT ACTION_ProcessComponents(MSIPACKAGE *package)
msiobj_release
(
&
uirow
->
hdr
);
}
}
}
end:
RegCloseKey
(
hkey
);
return
rc
;
}
...
...
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