Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/node_messaging.cc')
-rw-r--r--src/node_messaging.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/node_messaging.cc b/src/node_messaging.cc
index 03c6d5aaa76..5f054c41c8e 100644
--- a/src/node_messaging.cc
+++ b/src/node_messaging.cc
@@ -157,8 +157,7 @@ MaybeLocal<Value> Message::Deserialize(Environment* env,
// Attach all transferred SharedArrayBuffers to their new Isolate.
for (uint32_t i = 0; i < shared_array_buffers_.size(); ++i) {
Local<SharedArrayBuffer> sab =
- SharedArrayBuffer::New(env->isolate(),
- std::move(shared_array_buffers_[i]));
+ SharedArrayBuffer::New(env->isolate(), shared_array_buffers_[i]);
shared_array_buffers.push_back(sab);
}
@@ -1309,7 +1308,7 @@ Maybe<bool> SiblingGroup::Dispatch(
// Transferables cannot be used when there is more
// than a single destination.
- if (size() > 2 && message->transferables().size()) {
+ if (size() > 2 && message->has_transferables()) {
if (error != nullptr)
*error = "Transferables cannot be used with multiple destinations.";
return Nothing<bool>();