Showing with 2 additions and 2 deletions.
  1. +2 −2 lib/buffer.js
@@ -199,8 +199,8 @@ function Buffer(subject, encoding, offset) {
if (!pool || pool.length - pool.used < this.length) allocPool();
this.parent = pool;
this.offset = pool.used;
pool.used += this.length;
if (pool.used & 7) pool.used = (pool.used + 8) & ~7;
// Align on 8 byte boundary to avoid alignment issues on ARM.
pool.used = (pool.used + this.length + 7) & ~7;

} else {
// Zero-length buffer