Skip to content

Commit 1a9cc45

Browse files
committed
Fix #173 for 2.3.5
1 parent 8c700f5 commit 1a9cc45

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

release-notes/VERSION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ Project: jackson-core
22
Version: 2.3.5 (xx-xxx-2014)
33

44
#152: Exception for property names longer than 256k
5+
#173: An exception is thrown for a valid JsonPointer expression
56

67
------------------------------------------------------------------------
78
=== History: ===

src/main/java/com/fasterxml/jackson/core/JsonPointer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ private final static int _parseIndex(String str) {
190190
return -1;
191191
}
192192
for (int i = 0; i < len; ++i) {
193-
char c = str.charAt(i++);
193+
char c = str.charAt(i);
194194
if (c > '9' || c < '0') {
195195
return -1;
196196
}

0 commit comments

Comments
 (0)