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
7f07bb9a
Commit
7f07bb9a
authored
Dec 17, 2012
by
Jacek Caban
Committed by
Alexandre Julliard
Dec 17, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jscript: Fixed deleting nonexisting properties from member expression.
parent
9de9c353
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
dispex.c
dlls/jscript/dispex.c
+5
-3
lang.js
dlls/jscript/tests/lang.js
+2
-0
No files found.
dlls/jscript/dispex.c
View file @
7f07bb9a
...
...
@@ -1516,10 +1516,12 @@ HRESULT disp_delete_name(script_ctx_t *ctx, IDispatch *disp, jsstr_t *name, BOOL
dispex_prop_t
*
prop
;
hres
=
find_prop_name
(
jsdisp
,
string_hash
(
name
->
str
),
name
->
str
,
&
prop
);
if
(
prop
)
if
(
prop
)
{
hres
=
delete_prop
(
prop
,
ret
);
else
hres
=
DISP_E_MEMBERNOTFOUND
;
}
else
{
*
ret
=
TRUE
;
hres
=
S_OK
;
}
jsdisp_release
(
jsdisp
);
return
hres
;
...
...
dlls/jscript/tests/lang.js
View file @
7f07bb9a
...
...
@@ -1121,6 +1121,8 @@ ok(typeof(tmp.test) === "undefined", "tmp.test type = " + typeof(tmp.test));
ok
(
!
(
"test"
in
tmp
),
"test is still in tmp after delete?"
);
for
(
iter
in
tmp
)
ok
(
false
,
"tmp has prop "
+
iter
);
ok
((
delete
tmp
.
test
)
===
true
,
"deleting test didn't return true"
);
ok
((
delete
tmp
.
nonexistent
)
===
true
,
"deleting nonexistent didn't return true"
);
tmp
=
new
Object
();
tmp
.
test
=
false
;
...
...
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