Skip to content

Commit

Permalink
src: use MaybeLocal.ToLocal instead of IsEmpty
Browse files Browse the repository at this point in the history
PR-URL: #35716
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: David Carlier <devnexen@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
  • Loading branch information
danbev authored and BethGriggs committed Dec 15, 2020
1 parent 47b4b2b commit 34c870e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/node_buffer.cc
Expand Up @@ -423,12 +423,13 @@ MaybeLocal<Object> New(Environment* env,
True(env->isolate())).IsNothing()) {
return Local<Object>();
}
MaybeLocal<Uint8Array> ui = Buffer::New(env, ab, 0, length);
MaybeLocal<Uint8Array> maybe_ui = Buffer::New(env, ab, 0, length);

if (ui.IsEmpty())
Local<Uint8Array> ui;
if (!maybe_ui.ToLocal(&ui))
return MaybeLocal<Object>();

return scope.Escape(ui.ToLocalChecked());
return scope.Escape(ui);
}

// Warning: This function needs `data` to be allocated with malloc() and not
Expand Down

0 comments on commit 34c870e

Please sign in to comment.