Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
f1104125
Commit
f1104125
authored
Jun 02, 2005
by
Aric Stewart
Committed by
Alexandre Julliard
Jun 02, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Print a message for skipped actions in ProcessExecSequence like in the
UISequence.
parent
4571d018
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
9 deletions
+11
-9
action.c
dlls/msi/action.c
+11
-9
No files found.
dlls/msi/action.c
View file @
f1104125
...
@@ -1193,6 +1193,15 @@ static UINT ACTION_ProcessExecSequence(MSIPACKAGE *package, BOOL UIran)
...
@@ -1193,6 +1193,15 @@ static UINT ACTION_ProcessExecSequence(MSIPACKAGE *package, BOOL UIran)
break
;
break
;
}
}
sz
=
0x100
;
rc
=
MSI_RecordGetStringW
(
row
,
1
,
buffer
,
&
sz
);
if
(
rc
!=
ERROR_SUCCESS
)
{
ERR
(
"Error is %x
\n
"
,
rc
);
msiobj_release
(
&
row
->
hdr
);
break
;
}
/* check conditions */
/* check conditions */
if
(
!
MSI_RecordIsNull
(
row
,
2
))
if
(
!
MSI_RecordIsNull
(
row
,
2
))
{
{
...
@@ -1207,6 +1216,8 @@ static UINT ACTION_ProcessExecSequence(MSIPACKAGE *package, BOOL UIran)
...
@@ -1207,6 +1216,8 @@ static UINT ACTION_ProcessExecSequence(MSIPACKAGE *package, BOOL UIran)
{
{
HeapFree
(
GetProcessHeap
(),
0
,
cond
);
HeapFree
(
GetProcessHeap
(),
0
,
cond
);
msiobj_release
(
&
row
->
hdr
);
msiobj_release
(
&
row
->
hdr
);
TRACE
(
"Skipping action: %s (condition is false)
\n
"
,
debugstr_w
(
buffer
));
continue
;
continue
;
}
}
else
else
...
@@ -1214,15 +1225,6 @@ static UINT ACTION_ProcessExecSequence(MSIPACKAGE *package, BOOL UIran)
...
@@ -1214,15 +1225,6 @@ static UINT ACTION_ProcessExecSequence(MSIPACKAGE *package, BOOL UIran)
}
}
}
}
sz
=
0x100
;
rc
=
MSI_RecordGetStringW
(
row
,
1
,
buffer
,
&
sz
);
if
(
rc
!=
ERROR_SUCCESS
)
{
ERR
(
"Error is %x
\n
"
,
rc
);
msiobj_release
(
&
row
->
hdr
);
break
;
}
rc
=
ACTION_PerformAction
(
package
,
buffer
,
FALSE
);
rc
=
ACTION_PerformAction
(
package
,
buffer
,
FALSE
);
if
(
rc
==
ERROR_FUNCTION_NOT_CALLED
)
if
(
rc
==
ERROR_FUNCTION_NOT_CALLED
)
...
...
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