RESOLVED FIXED 164958
Fix missing exception checks in DFGOperations.cpp.
https://bugs.webkit.org/show_bug.cgi?id=164958
Summary Fix missing exception checks in DFGOperations.cpp.
Mark Lam
Reported 2016-11-18 14:28:13 PST
Patch coming.
Attachments
proposed patch. (9.93 KB, patch)
2016-11-18 14:45 PST, Mark Lam
ggaren: review+
patch for landing. (9.99 KB, patch)
2016-11-18 15:05 PST, Mark Lam
no flags
Mark Lam
Comment 1 2016-11-18 14:45:52 PST
Created attachment 295196 [details] proposed patch.
Geoffrey Garen
Comment 2 2016-11-18 14:54:36 PST
Comment on attachment 295196 [details] proposed patch. View in context: https://bugs.webkit.org/attachment.cgi?id=295196&action=review r=me > Source/JavaScriptCore/dfg/DFGOperations.cpp:144 > + if (Optional<uint32_t> index = parseIndex(propertyName)) { > + scope.release(); > asObject(baseValue)->putDirectIndex(exec, index.value(), value, 0, strict ? PutDirectIndexShouldThrow : PutDirectIndexShouldNotThrow); > - else > + } else > asObject(baseValue)->putDirect(*vm, propertyName, value, slot); > - } else > + } else { > + scope.release(); > baseValue.put(exec, propertyName, value, slot); > + } > } It's a little sketchy to have a scope.release() not immediately before a return. I think we should switch the if/else format to if/return.
Mark Lam
Comment 3 2016-11-18 15:05:12 PST
Created attachment 295198 [details] patch for landing. Thanks for the review. I applied the suggested change.
WebKit Commit Bot
Comment 4 2016-11-18 17:46:08 PST
Comment on attachment 295198 [details] patch for landing. Clearing flags on attachment: 295198 Committed r208913: <http://trac.webkit.org/changeset/208913>
WebKit Commit Bot
Comment 5 2016-11-18 17:46:13 PST
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.