Skip to content
This repository was archived by the owner on Oct 7, 2020. It is now read-only.

Commit 372a2f5

Browse files
committed
smalloc: fix bad assert for zero length data
If the data length passed to smalloc.alloc() the array_length will be zero, causing an overflow check to fail. This prevents that from happening. Signed-off-by: Trevor Norris <[email protected]>
1 parent b636ba8 commit 372a2f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/smalloc.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ void CallbackInfo::WeakCallback(Isolate* isolate, Local<Object> object) {
132132
object->GetIndexedPropertiesExternalArrayDataType();
133133
size_t array_size = ExternalArraySize(array_type);
134134
CHECK_GT(array_size, 0);
135-
if (array_size > 1) {
135+
if (array_size > 1 && array_data != NULL) {
136136
CHECK_GT(array_length * array_size, array_length); // Overflow check.
137137
array_length *= array_size;
138138
}

0 commit comments

Comments
 (0)