Merge "Fix readAndFollowForwardLink."

main
Ken Wakasa 2013-10-16 07:48:30 +00:00 committed by Android (Google) Code Review
commit 008d84ffa5
1 changed files with 2 additions and 1 deletions

View File

@ -318,7 +318,8 @@ public class Ver4DictDecoder extends AbstractDictDecoder {
@Override
public boolean readAndFollowForwardLink() {
final int nextAddress = mDictBuffer.readUnsignedInt24();
final int forwardLinkPos = mDictBuffer.position();
final int nextAddress = forwardLinkPos + BinaryDictDecoderUtils.readSInt24(mDictBuffer);
if (nextAddress >= 0 && nextAddress < mDictBuffer.limit()) {
mDictBuffer.position(nextAddress);
return true;