Skip to content

Commit

Permalink
Backport #191 fix in 2.4(.6).
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Apr 23, 2015
1 parent fca10e3 commit 1fb4adf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions release-notes/VERSION
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ json-specificity (naming due to historical reasons).

#184: WRITE_NUMBERS_AS_STRINGS disables WRITE_BIGDECIMAL_AS_PLAIN
(reported by Derek C)
#191: Longest collision chain in symbol table now exceeds maximum

2.4.5 (13-Jan-2015)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1302,7 +1302,7 @@ private String _parseName2(int startPtr, int hash, int endChar) throws IOExcepti
}
}
}
hash = (hash * CharsToNameCanonicalizer.HASH_MULT) + i;
hash = (hash * CharsToNameCanonicalizer.HASH_MULT) + c;
// Ok, let's add char to output:
outBuf[outPtr++] = c;

Expand Down

0 comments on commit 1fb4adf

Please sign in to comment.