Skip to content
This repository was archived by the owner on Apr 22, 2023. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/smalloc.cc
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ void CopyOnto(const FunctionCallbackInfo<Value>& args) {
size_t dest_size = ExternalArraySize(dest_type);

// optimization for Uint8 arrays (i.e. Buffers)
if (source_size != 1 && dest_size != 1) {
if (source_size != 1 || dest_size != 1) {
if (source_size == 0)
return env->ThrowTypeError("unknown source external array type");
if (dest_size == 0)
Expand Down
14 changes: 14 additions & 0 deletions test/simple/test-smalloc.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,20 @@ if (os.endianness() === 'LE') {
copyOnto(c, 0, b, 0, 2);
assert.equal(b[0], 0.1);

var b = alloc(1, Types.Uint16);
var c = alloc(2, Types.Uint8);
c[0] = c[1] = 0xff;
copyOnto(c, 0, b, 0, 2);
assert.equal(b[0], 0xffff);

var b = alloc(2, Types.Uint8);
var c = alloc(1, Types.Uint16);
c[0] = 0xffff;
copyOnto(c, 0, b, 0, 1);
assert.equal(b[0], 0xff);
assert.equal(b[1], 0xff);



// verify checking external if has external memory

Expand Down