Bug 165016

Summary: Fix exception scope verification failures in JSArray* files.
Product: WebKit Reporter: Mark Lam <mark.lam>
Component: JavaScriptCoreAssignee: Mark Lam <mark.lam>
Status: RESOLVED FIXED    
Severity: Normal CC: fpizlo, ggaren, jfbastien, keith_miller, msaboff, saam, ysuzuki
Priority: P2    
Version: WebKit Local Build   
Hardware: Unspecified   
OS: Unspecified   
Bug Depends on:    
Bug Blocks: 162351    
Attachments:
Description Flags
proposed patch. saam: review+

Description Mark Lam 2016-11-21 18:48:02 PST
Patch coming.
Comment 1 Mark Lam 2016-11-21 19:24:16 PST
Created attachment 295320 [details]
proposed patch.
Comment 2 Saam Barati 2016-11-28 14:21:57 PST
Comment on attachment 295320 [details]
proposed patch.

View in context: https://bugs.webkit.org/attachment.cgi?id=295320&action=review

> Source/JavaScriptCore/runtime/JSArray.cpp:265
> +        ASSERT(!scope.exception());

This isn't needed since scope.release will soon assert this.
Comment 3 Mark Lam 2016-11-28 15:45:59 PST
Comment on attachment 295320 [details]
proposed patch.

View in context: https://bugs.webkit.org/attachment.cgi?id=295320&action=review

>> Source/JavaScriptCore/runtime/JSArray.cpp:265
>> +        ASSERT(!scope.exception());
> 
> This isn't needed since scope.release will soon assert this.

I'll remove this.
Comment 4 Mark Lam 2016-11-28 15:51:20 PST
Thanks for the review.  Landed in r209036: <http://trac.webkit.org/r209036>.