Skip to content

Commit a35ba2f

Browse files
committed
buffer: fix pool offset adjustment
If the Buffer allocation isn't a slice then there's no need to adjust the pool offset after realloc'ing the space available. Fixes: 6462519 "buffer, doc: misc. fix and cleanup"
1 parent 6c3647c commit a35ba2f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/buffer.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,9 @@ function Buffer(subject, encoding) {
104104
var prevLen = this.length;
105105
this.length = len;
106106
truncate(this, this.length);
107-
poolOffset -= (prevLen - len);
107+
// Only need to readjust the poolOffset if the allocation is a slice.
108+
if (this.parent != undefined)
109+
poolOffset -= (prevLen - len);
108110
}
109111

110112
} else if (util.isBuffer(subject)) {

0 commit comments

Comments
 (0)