Skip to content

Commit 03c3f88

Browse files
targosnodejs-github-bot
authored andcommitted
src: use non-deprecated v8::Uint8Array::kMaxLength
1 parent 31146a9 commit 03c3f88

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

src/node_buffer.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ namespace node {
2929

3030
namespace Buffer {
3131

32-
static const size_t kMaxLength = v8::TypedArray::kMaxLength;
32+
static const size_t kMaxLength = v8::Uint8Array::kMaxLength;
3333

3434
typedef void (*FreeCallback)(char* data, void* hint);
3535

src/node_errors.h

+5-3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
#include "debug_utils-inl.h"
77
#include "env.h"
8+
#include "node_buffer.h"
89
#include "v8.h"
910

1011
// Use ostringstream to print exact-width integer types
@@ -215,9 +216,10 @@ inline void THROW_ERR_SCRIPT_EXECUTION_TIMEOUT(Environment* env,
215216

216217
inline v8::Local<v8::Value> ERR_BUFFER_TOO_LARGE(v8::Isolate* isolate) {
217218
char message[128];
218-
snprintf(message, sizeof(message),
219-
"Cannot create a Buffer larger than 0x%zx bytes",
220-
v8::TypedArray::kMaxLength);
219+
snprintf(message,
220+
sizeof(message),
221+
"Cannot create a Buffer larger than 0x%zx bytes",
222+
Buffer::kMaxLength);
221223
return ERR_BUFFER_TOO_LARGE(isolate, message);
222224
}
223225

0 commit comments

Comments
 (0)