-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
buffer: remove lines setting indexes to integer value
PR-URL: #52588 Refs: #52585 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
- Loading branch information
Showing
2 changed files
with
21 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
'use strict'; | ||
const common = require('../common'); | ||
|
||
// Buffer with size > INT32_MAX | ||
common.skipIf32Bits(); | ||
|
||
const assert = require('assert'); | ||
|
||
const size = 2 ** 31; | ||
|
||
try { | ||
const buf = Buffer.allocUnsafe(size); | ||
const blob = new Blob([buf]); | ||
const slicedBlob = blob.slice(size - 1, size); | ||
assert.strictEqual(slicedBlob.size, 1); | ||
} catch (e) { | ||
if (e.code !== 'ERR_MEMORY_ALLOCATION_FAILED') { | ||
throw e; | ||
} | ||
common.skip('insufficient space for Buffer.allocUnsafe'); | ||
} |