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
2163
2163
// but loop beyond
2164
2164
for (int end = ptr +6 ; ptr < end ; ++ptr ) {
2165
2165
if (buf [ptr ] >= 0 ) {
2166
- _inputPtr = ptr ;
2166
+ _inputPtr = ptr + 1 ;
2167
2167
return ;
2168
2168
}
2169
2169
}
Original file line number Diff line number Diff line change @@ -28,6 +28,9 @@ marsqing@github
28
28
(2.8.10)
29
29
* Reported #106 (protobuf), contributed fix for: calling _skipUnknownValue() twice
30
30
(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)
31
34
32
35
baharclerode@github:
33
36
@@ -47,3 +50,9 @@ Eldad Rudich (eldadru@github)
47
50
* Reported #68 (proto): Getting "type not supported as root type by protobuf" for serialization
48
51
of short and UUID types
49
52
(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:
11
11
12
12
2.9.3 (not yet released)
13
13
14
- #114: copyStructure(): avoid duplicate tags when copying tagged binary.
14
+ #114: (cbor) copyStructure(): avoid duplicate tags when copying tagged binary.
15
15
(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)
16
18
17
19
2.9.2 (14-Oct-2017)
18
20
You can’t perform that action at this time.
0 commit comments