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
6625f07e
Commit
6625f07e
authored
Dec 23, 2010
by
Hans Leidekker
Committed by
Alexandre Julliard
Dec 23, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Don't flag an error in the InstallServices action if the component does not exist.
parent
5f9dd9df
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
action.c
dlls/msi/action.c
+4
-1
No files found.
dlls/msi/action.c
View file @
6625f07e
...
...
@@ -5525,6 +5525,10 @@ static UINT ITERATE_InstallService(MSIRECORD *rec, LPVOID param)
goto
done
;
}
comp
=
MSI_RecordGetString
(
rec
,
12
);
if
(
!
get_loaded_component
(
package
,
comp
))
goto
done
;
start_type
=
MSI_RecordGetInteger
(
rec
,
5
);
if
(
start_type
==
SERVICE_BOOT_START
||
start_type
==
SERVICE_SYSTEM_START
)
goto
done
;
...
...
@@ -5538,7 +5542,6 @@ static UINT ITERATE_InstallService(MSIRECORD *rec, LPVOID param)
deformat_string
(
package
,
MSI_RecordGetString
(
rec
,
9
),
&
serv_name
);
deformat_string
(
package
,
MSI_RecordGetString
(
rec
,
10
),
&
pass
);
deformat_string
(
package
,
MSI_RecordGetString
(
rec
,
11
),
&
args
);
comp
=
MSI_RecordGetString
(
rec
,
12
);
deformat_string
(
package
,
MSI_RecordGetString
(
rec
,
13
),
&
sd
.
lpDescription
);
/* fetch the service path */
...
...
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