diff --git a/src/node_buffer.cc b/src/node_buffer.cc index 26441ed87715e3..cd361320816dc7 100644 --- a/src/node_buffer.cc +++ b/src/node_buffer.cc @@ -401,11 +401,6 @@ MaybeLocal New(Environment* env, } Local ab = ArrayBuffer::New(env->isolate(), data, length); - // `Neuter()`ing is required here to prevent materialization of the backing - // store in v8. `nullptr` buffers are not writable, so this is semantically - // correct. - if (data == nullptr) - ab->Neuter(); MaybeLocal ui = Buffer::New(env, ab, 0, length); if (ui.IsEmpty()) {