diff --git a/src/node_file.cc b/src/node_file.cc index 153de7516d..16f404591e 100644 --- a/src/node_file.cc +++ b/src/node_file.cc @@ -421,7 +421,10 @@ static Handle Read(const Arguments& args) { ret = pread(fd, buf, MIN(len, READ_BUF_LEN), offset); } if (ret < 0) return ThrowException(errno_exception(errno)); - return scope.Close(Integer::New(ret)); + Local a = Array::New(2); + a->Set(Integer::New(0), Encode(buf, ret, encoding)); + a->Set(Integer::New(1), Integer::New(ret)); + return scope.Close(a); } }