Changeset 253515 in webkit
- Timestamp:
- Dec 13, 2019, 5:51:00 PM (5 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JSTests/ChangeLog
r253460 r253515 1 2019-12-13 Mark Lam <mark.lam@apple.com> 2 3 Fix bad exception assertion in ExceptionHelpers.cpp's createError(). 4 https://bugs.webkit.org/show_bug.cgi?id=205230 5 <rdar://problem/57875688> 6 7 Reviewed by Yusuke Suzuki. 8 9 * stress/test-exception-assert-in-ExceptionHelpers-createError.js: Added. 10 1 11 2019-12-12 Yusuke Suzuki <ysuzuki@apple.com> 2 12 -
trunk/Source/JavaScriptCore/ChangeLog
r253500 r253515 1 2019-12-13 Mark Lam <mark.lam@apple.com> 2 3 Fix bad exception assertion in ExceptionHelpers.cpp's createError(). 4 https://bugs.webkit.org/show_bug.cgi?id=205230 5 <rdar://problem/57875688> 6 7 Reviewed by Yusuke Suzuki. 8 9 The code in createError() was doing the following: 10 11 String valueDescription = errorDescriptionForValue(globalObject, value); 12 EXCEPTION_ASSERT(scope.exception() || !!valueDescription); 13 if (!valueDescription) { 14 scope.clearException(); 15 return createOutOfMemoryError(globalObject); 16 } 17 18 If errorDescriptionForValue() throws an exception, then we expect the 19 valueDescription string to be null so that we can throw an OutOfMemoryError. 20 However, errorDescriptionForValue() can detect an imminent overflow in String 21 length and just return a null string without throwing an exception which fails 22 the above assertion. 23 24 The fix is to simply do an explicit exception check in addition to the null string 25 check and remove the assertion. 26 27 * runtime/ExceptionHelpers.cpp: 28 (JSC::createError): 29 1 30 2019-12-13 Saam Barati <sbarati@apple.com> 2 31 -
trunk/Source/JavaScriptCore/runtime/ExceptionHelpers.cpp
r253458 r253515 267 267 268 268 String valueDescription = errorDescriptionForValue(globalObject, value); 269 EXCEPTION_ASSERT(scope.exception() || !!valueDescription); 270 if (!valueDescription) { 269 if (scope.exception() || !valueDescription) { 270 // When we see an exception, we're not returning immediately because 271 // we're in a CatchScope, i.e. no exceptions are thrown past this scope. 272 // We're using a CatchScope because the contract for createError() is 273 // that it only creates an error object; it doesn't throw it. 271 274 scope.clearException(); 272 275 return createOutOfMemoryError(globalObject);
Note:
See TracChangeset
for help on using the changeset viewer.