diff --git a/include/addon-tools.hpp b/include/addon-tools.hpp index fe41eb2..68d9b8c 100644 --- a/include/addon-tools.hpp +++ b/include/addon-tools.hpp @@ -338,7 +338,7 @@ inline Type* getArrayData( size_t offset = ta.ByteOffset(); Napi::ArrayBuffer arr = ta.ArrayBuffer(); if (num) { - *num = arr.ByteLength() / sizeof(Type); + *num = ta.ByteLength() / sizeof(Type); } uint8_t *base = reinterpret_cast(arr.Data()); out = reinterpret_cast(base + offset);