mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 13:48:44 +02:00
Merge remote-tracking branch 'origin/v0.10' into master
Conflicts: doc/api/buffer.markdown lib/_stream_readable.js lib/assert.js lib/buffer.js lib/child_process.js lib/http.js lib/string_decoder.js lib/zlib.js node.gyp test/simple/test-buffer.js test/simple/test-https-foafssl.js test/simple/test-stream2-compatibility.js test/simple/test-tls-server-verify.js
This commit is contained in:
commit
f310c0f16b
16 changed files with 114 additions and 41 deletions
|
@ -505,7 +505,7 @@ Buffer.prototype.readUInt32BE = function(offset, noAssert) {
|
|||
return (this[offset] * 0x1000000) +
|
||||
((this[offset + 1] << 16) |
|
||||
(this[offset + 2] << 8) |
|
||||
(this[offset + 3]) >>> 0);
|
||||
this[offset + 3]);
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue