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
82f4e398
Commit
82f4e398
authored
Jun 18, 2007
by
James Hawkins
Committed by
Alexandre Julliard
Jun 19, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Send the expected data to set_deferred_action_props.
parent
a00aa039
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
custom.c
dlls/msi/custom.c
+3
-4
No files found.
dlls/msi/custom.c
View file @
82f4e398
...
...
@@ -157,7 +157,7 @@ static LPWSTR msi_get_deferred_action(LPCWSTR action, LPCWSTR actiondata,
static
void
set_deferred_action_props
(
MSIPACKAGE
*
package
,
LPWSTR
deferred_data
)
{
LPWSTR
end
,
beg
=
deferred_data
;
LPWSTR
end
,
beg
=
deferred_data
+
1
;
end
=
strchrW
(
beg
,
';'
);
*
end
=
'\0'
;
...
...
@@ -189,11 +189,10 @@ UINT ACTION_CustomAction(MSIPACKAGE *package,LPCWSTR action, BOOL execute)
LPWSTR
action_copy
=
strdupW
(
action
);
WCHAR
*
deformated
=
NULL
;
/* deferred action: [
CustomActionData
]Action */
/* deferred action: [
properties
]Action */
if
((
ptr
=
strchrW
(
action_copy
,
']'
)))
{
deferred_data
=
action_copy
+
1
;
*
ptr
=
'\0'
;
deferred_data
=
action_copy
;
action
=
ptr
+
1
;
}
...
...
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