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
2d752d1a
Commit
2d752d1a
authored
Apr 29, 2014
by
Jacek Caban
Committed by
Alexandre Julliard
Apr 29, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jscript: Fixed uninitialized variable access in interp_end_finally.
parent
65887802
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
6 deletions
+5
-6
engine.c
dlls/jscript/engine.c
+5
-6
No files found.
dlls/jscript/engine.c
View file @
2d752d1a
...
...
@@ -795,18 +795,17 @@ static HRESULT interp_end_finally(exec_ctx_t *ctx)
TRACE
(
"
\n
"
);
assert
(
is_bool
(
stack_top
(
ctx
)));
if
(
!
get_bool
(
stack_top
(
ctx
)))
{
TRACE
(
"passing exception
\n
"
);
v
=
stack_pop
(
ctx
);
assert
(
is_bool
(
v
));
jsval_release
(
v
);
stack_popn
(
ctx
,
1
);
if
(
!
get_bool
(
v
))
{
TRACE
(
"passing exception
\n
"
);
ctx
->
script
->
ei
.
val
=
stack_pop
(
ctx
);
return
DISP_E_EXCEPTION
;
}
stack_pop
n
(
ctx
,
2
);
stack_pop
(
ctx
);
return
S_OK
;
}
...
...
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