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
e374449e
Commit
e374449e
authored
Sep 20, 2012
by
Jacek Caban
Committed by
Alexandre Julliard
Sep 20, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jscript: Get rid of unused hres.
Spotted by Michael Stefaniuc.
parent
87d6e238
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
3 deletions
+1
-3
engine.c
dlls/jscript/engine.c
+1
-3
No files found.
dlls/jscript/engine.c
View file @
e374449e
...
@@ -771,15 +771,13 @@ static HRESULT interp_end_finally(exec_ctx_t *ctx)
...
@@ -771,15 +771,13 @@ static HRESULT interp_end_finally(exec_ctx_t *ctx)
assert
(
is_bool
(
stack_top
(
ctx
)));
assert
(
is_bool
(
stack_top
(
ctx
)));
if
(
!
get_bool
(
stack_top
(
ctx
)))
{
if
(
!
get_bool
(
stack_top
(
ctx
)))
{
HRESULT
hres
;
TRACE
(
"passing exception
\n
"
);
TRACE
(
"passing exception
\n
"
);
jsval_release
(
v
);
jsval_release
(
v
);
stack_popn
(
ctx
,
1
);
stack_popn
(
ctx
,
1
);
ctx
->
script
->
ei
.
val
=
stack_pop
(
ctx
);
ctx
->
script
->
ei
.
val
=
stack_pop
(
ctx
);
return
SUCCEEDED
(
hres
)
?
DISP_E_EXCEPTION
:
hres
;
return
DISP_E_EXCEPTION
;
}
}
stack_popn
(
ctx
,
2
);
stack_popn
(
ctx
,
2
);
...
...
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