File tree Expand file tree Collapse file tree 3 files changed +13
-2
lines changed
protobuf/src/main/java/com/fasterxml/jackson/dataformat/protobuf Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -2163,7 +2163,7 @@ protected void _skipVInt() throws IOException
21632163 // but loop beyond
21642164 for (int end = ptr +6 ; ptr < end ; ++ptr ) {
21652165 if (buf [ptr ] >= 0 ) {
2166- _inputPtr = ptr ;
2166+ _inputPtr = ptr + 1 ;
21672167 return ;
21682168 }
21692169 }
Original file line number Diff line number Diff line change @@ -28,6 +28,9 @@ marsqing@github
2828 (2.8.10)
2929* Reported #106 (protobuf), contributed fix for: calling _skipUnknownValue() twice
3030 (2.8.11 / 2.9.1)
31+ * Reported #116 (protobuf), contributed fix for: Should skip the positive byte
32+ which is the last byte of an varint
33+ (2.9.3)
3134
3235baharclerode@github:
3336
@@ -47,3 +50,9 @@ Eldad Rudich (eldadru@github)
4750* Reported #68 (proto): Getting "type not supported as root type by protobuf" for serialization
4851 of short and UUID types
4952 (2.9.0)
53+
54+ philipa@github
55+
56+ * Reported #114 (cbor), contributed fix for: copyStructure(): avoid duplicate tags
57+ when copying tagged binary
58+ (2.9.3)
Original file line number Diff line number Diff line change @@ -11,8 +11,10 @@ Modules:
1111
12122.9.3 (not yet released)
1313
14- #114: copyStructure(): avoid duplicate tags when copying tagged binary.
14+ #114: (cbor) copyStructure(): avoid duplicate tags when copying tagged binary.
1515 (contributed by philipa@github)
16+ #116: (protobuf) Should skip the positive byte which is the last byte of an varint
17+ (contributed by marsqing@github)
1618
17192.9.2 (14-Oct-2017)
1820
You can’t perform that action at this time.
0 commit comments