Deserialize: fix unsigned bitwise math

This commit is contained in:
Jeff Garzik 2013-08-02 17:02:50 -04:00
parent 64466512be
commit e4f2f02adf

View File

@ -1,8 +1,8 @@
exports.intFromCompact = function(c)
{
var bytes = (c >> 24) & 0xff;
var v = (c & 0xffffff) << (8 * (bytes - 3));
var bytes = ((c >>> 24) & 0xff) >>> 0;
var v = ((c & 0xffffff) << (8 * (bytes - 3))) >>> 0;
return v;
}