Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(134)

Unified Diff: src/runtime/runtime-typedarray.cc

Issue 1174753002: Fix cluster-fuzz bug introduced in refs/heads/master@{#28796}. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: nicer test Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | test/mjsunit/regress/regress-crbug-498142.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/runtime/runtime-typedarray.cc
diff --git a/src/runtime/runtime-typedarray.cc b/src/runtime/runtime-typedarray.cc
index 217d739a11edcf7dd7fe86d7eb7019170dc720a0..0c4223cd46fc0fa36d964d8bdee09a0918545c1e 100644
--- a/src/runtime/runtime-typedarray.cc
+++ b/src/runtime/runtime-typedarray.cc
@@ -144,7 +144,7 @@ RUNTIME_FUNCTION(Runtime_ArrayBufferNeuter) {
return isolate->heap()->undefined_value();
}
// Shared array buffers should never be neutered.
- DCHECK(!array_buffer->is_shared());
+ RUNTIME_ASSERT(!array_buffer->is_shared());
DCHECK(!array_buffer->is_external());
void* backing_store = array_buffer->backing_store();
size_t byte_length = NumberToSize(isolate, array_buffer->byte_length());
« no previous file with comments | « no previous file | test/mjsunit/regress/regress-crbug-498142.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698