We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This resulted in a real-world application issue:
[1] Assertion failed: (size <= imp::kMaxLength && "too large buffer"), function NewBuffer, file nan.h, line 939.
Buffers of 1GB are definitely realistic when dealing with >4k visual data.
The check is implemented here
nan/nan.h
Line 896 in e14bdcd
The constant is defined here:
Line 417 in e14bdcd
I believe it should be 4GB as reported by buffer.constants.MAX_LENGTH (https://nodejs.org/api/buffer.html#bufferkmaxlength)
buffer.constants.MAX_LENGTH
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This resulted in a real-world application issue:
Buffers of 1GB are definitely realistic when dealing with >4k visual data.
The check is implemented here
nan/nan.h
Line 896 in e14bdcd
The constant is defined here:
nan/nan.h
Line 417 in e14bdcd
I believe it should be 4GB as reported by
buffer.constants.MAX_LENGTH
(https://nodejs.org/api/buffer.html#bufferkmaxlength)The text was updated successfully, but these errors were encountered: