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
e8766bb6
Commit
e8766bb6
authored
Dec 07, 2012
by
Jacek Caban
Committed by
Alexandre Julliard
Dec 07, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jscript: Added more useful debug traces.
parent
b93dbb49
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
activex.c
dlls/jscript/activex.c
+2
-0
engine.c
dlls/jscript/engine.c
+1
-1
No files found.
dlls/jscript/activex.c
View file @
e8766bb6
...
...
@@ -70,6 +70,8 @@ static IUnknown *create_activex_object(script_ctx_t *ctx, const WCHAR *progid)
GUID
guid
;
HRESULT
hres
;
TRACE
(
"%s
\n
"
,
debugstr_w
(
progid
));
hres
=
CLSIDFromProgID
(
progid
,
&
guid
);
if
(
FAILED
(
hres
))
return
NULL
;
...
...
dlls/jscript/engine.c
View file @
e8766bb6
...
...
@@ -2458,7 +2458,7 @@ static HRESULT enter_bytecode(script_ctx_t *ctx, bytecode_t *code, function_code
op
=
code
->
instrs
[
exec_ctx
->
ip
].
op
;
hres
=
op_funcs
[
op
](
exec_ctx
);
if
(
FAILED
(
hres
))
{
TRACE
(
"EXCEPTION
\n
"
);
TRACE
(
"EXCEPTION
%08x
\n
"
,
hres
);
if
(
!
exec_ctx
->
except_frame
)
break
;
...
...
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