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
410154e2
Commit
410154e2
authored
Oct 23, 2019
by
Jacek Caban
Committed by
Alexandre Julliard
Oct 23, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vbscript: Improve exec_script debug traces.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
a4a2e735
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
interp.c
dlls/vbscript/interp.c
+3
-0
No files found.
dlls/vbscript/interp.c
View file @
410154e2
...
...
@@ -2098,6 +2098,7 @@ HRESULT exec_script(script_ctx_t *ctx, BOOL extern_caller, function_t *func, vbd
heap_pool_init
(
&
exec
.
heap
);
TRACE
(
"%s("
,
debugstr_w
(
func
->
name
));
if
(
func
->
arg_cnt
)
{
VARIANT
*
v
;
unsigned
i
;
...
...
@@ -2110,6 +2111,7 @@ HRESULT exec_script(script_ctx_t *ctx, BOOL extern_caller, function_t *func, vbd
for
(
i
=
0
;
i
<
func
->
arg_cnt
;
i
++
)
{
v
=
get_arg
(
dp
,
i
);
TRACE
(
"%s%s"
,
i
?
", "
:
""
,
debugstr_variant
(
v
));
if
(
V_VT
(
v
)
==
(
VT_VARIANT
|
VT_BYREF
))
{
if
(
func
->
args
[
i
].
by_ref
)
exec
.
args
[
i
]
=
*
v
;
...
...
@@ -2126,6 +2128,7 @@ HRESULT exec_script(script_ctx_t *ctx, BOOL extern_caller, function_t *func, vbd
}
else
{
exec
.
args
=
NULL
;
}
TRACE
(
")
\n
"
);
if
(
func
->
var_cnt
)
{
exec
.
vars
=
heap_alloc_zero
(
func
->
var_cnt
*
sizeof
(
VARIANT
));
...
...
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