-
Notifications
You must be signed in to change notification settings - Fork 29.6k
New issue
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
buffer: buffer.constants.MAX_LENGTH
is larger than expected
#38093
Comments
Ayase-252
changed the title
buffer:
buffer: Apr 5, 2021
buffer.constants.MAX_LENGTH
is larger than docs saysbuffer.constants.MAX_LENGTH
is larger than expected
IMO, it depends on the bitness of the system, aka |
Ayase-252
added a commit
to Ayase-252/node
that referenced
this issue
Apr 6, 2021
juanarbol
pushed a commit
to juanarbol/node
that referenced
this issue
Apr 13, 2021
Fixes: nodejs#38093 PR-URL: nodejs#38109 Reviewed-By: Darshan Sen <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: James M Snell <[email protected]>
juanarbol
pushed a commit
to juanarbol/node
that referenced
this issue
Apr 13, 2021
Fixes: nodejs#38093 PR-URL: nodejs#38109 Reviewed-By: Darshan Sen <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: James M Snell <[email protected]> Backport-PR-URL: nodejs#38232
juanarbol
pushed a commit
to juanarbol/node
that referenced
this issue
Apr 13, 2021
Fixes: nodejs#38093 PR-URL: nodejs#38109 Reviewed-By: Darshan Sen <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: James M Snell <[email protected]> Backport-PR-URL: nodejs#38232
BethGriggs
pushed a commit
that referenced
this issue
Apr 15, 2021
Fixes: #38093 PR-URL: #38109 Reviewed-By: Darshan Sen <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: James M Snell <[email protected]>
juanarbol
pushed a commit
to juanarbol/node
that referenced
this issue
Apr 20, 2021
Fixes: nodejs#38093 PR-URL: nodejs#38109 Reviewed-By: Darshan Sen <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: James M Snell <[email protected]> Backport-PR-URL: nodejs#38232
targos
pushed a commit
that referenced
this issue
Apr 24, 2021
Fixes: #38093 PR-URL: #38109 Reviewed-By: Darshan Sen <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: James M Snell <[email protected]> Backport-PR-URL: #38232
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What steps will reproduce the bug?
Run node, then
It shows
buffer.constants.MAX_LENGTH
is4294967296
. (2 ** 32)How often does it reproduce? Is there a required condition?
Always
What is the expected behavior?
buffer.constants.MAX_LENGTH
should be2147483647
. As relevent docs sayWhat do you see instead?
buffer.constants.MAX_LENGTH
is4294967296
Additional information
Maybe related to #38090
Possibily the impact of Bump TypedArray max length to 2**32-1 elements in v8
The text was updated successfully, but these errors were encountered: