[EGIT PATCH 2/4] Fix NB.decodeUInt16 to correctly handle the high byte | |
| [Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] | |
Our decodeUInt16 method was buggy and always cleared the high byte
of the pair. This meant we always lost the upper 8 bits when we
read in a 16 bit unsigned integer, possibly causing us to misread
the data associated with that pair.
Signed-off-by: Shawn O. Pearce <spearce@xxxxxxxxxxx>
---
org.spearce.jgit/src/org/spearce/jgit/util/NB.java | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/org.spearce.jgit/src/org/spearce/jgit/util/NB.java b/org.spearce.jgit/src/org/spearce/jgit/util/NB.java
index c6176f8..fa13354 100644
--- a/org.spearce.jgit/src/org/spearce/jgit/util/NB.java
+++ b/org.spearce.jgit/src/org/spearce/jgit/util/NB.java
@@ -102,7 +102,7 @@ public static int compareUInt32(final int a, final int b) {
* @return unsigned integer value that matches the 16 bits read.
*/
public static int decodeUInt16(final byte[] intbuf, final int offset) {
- int r = (intbuf[offset] << 8) & 0xff;
+ int r = (intbuf[offset] & 0xff) << 8;
return r | (intbuf[offset + 1] & 0xff);
}
--
1.6.0.87.g2858d
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
[Newbies FAQ] [Kernel List] [Site Home] [Free Online Dating] [Gcc Help] [IETF Annouce] [DCCP] [Netdev] [Networking] [Security] [V4L] [Bugtraq] [Free Online Dating] [Rubini] [Photo] [Yosemite] [MIPS Linux] [ARM Linux] [Linux Security] [Linux RAID] [Linux SCSI] [DDR & Rambus] [Linux Resources]