From: Daniel Cousens Date: Thu, 20 Aug 2015 23:49:36 +0000 (+1000) Subject: reduce MAX_ARGUMENTS_LENGTH, re resolves #69 X-Git-Url: https://zoso.dev/?a=commitdiff_plain;h=cbe913a3298586406ffa1ce3fc64cd30ad64c049;p=buffer.git reduce MAX_ARGUMENTS_LENGTH, re resolves #69 --- diff --git a/index.js b/index.js index fe70d22..486d21f 100644 --- a/index.js +++ b/index.js @@ -707,7 +707,8 @@ function asciiSlice (buf, start, end) { // Based on http://stackoverflow.com/a/22747272/680742, the browser with // the lowest limit is Chrome, with 0x10000 args. -var MAX_ARGUMENTS_LENGTH = 0x10000 +// We go 1 magnitude less, for safety +var MAX_ARGUMENTS_LENGTH = 0x1000 function binarySlice (buf, start, end) { var len = buf.length