-
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: backport --zero-fill-buffers cli option
This backports the --zero-fill-buffers command line flag introduced in master. When used, all Buffer and SlowBuffer instances will zero fill by default. This does *not* backport any of the other Buffer API or behavior changes. PR-URL: #5745 Reviewed-By: Trevor Norris <trev.norris@gmail.com>
- Loading branch information
Showing
6 changed files
with
70 additions
and
3 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
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
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,30 @@ | ||
'use strict'; | ||
// Flags: --zero-fill-buffers | ||
|
||
// when using --zero-fill-buffers, every Buffer and SlowBuffer | ||
// instance must be zero filled upon creation | ||
|
||
require('../common'); | ||
const SlowBuffer = require('buffer').SlowBuffer; | ||
const assert = require('assert'); | ||
|
||
function isZeroFilled(buf) { | ||
for (let n = 0; n < buf.length; n++) | ||
if (buf[n] > 0) return false; | ||
return true; | ||
} | ||
|
||
// This can be somewhat unreliable because the | ||
// allocated memory might just already happen to | ||
// contain all zeroes. The test is run multiple | ||
// times to improve the reliability. | ||
for (let i = 0; i < 50; i++) { | ||
const bufs = [ | ||
SlowBuffer(20), | ||
Buffer(20), | ||
new SlowBuffer(20) | ||
]; | ||
for (const buf of bufs) { | ||
assert(isZeroFilled(buf)); | ||
} | ||
} |