am 7c62f10e: Merge "Fix: write bigram entry at wrong position."

* commit '7c62f10e2dafeed7582937370af005647c584682':
  Fix: write bigram entry at wrong position.
main
Keisuke Kuroyanagi 2013-12-02 03:53:48 -08:00 committed by Android Git Automerger
commit ffd6027167
1 changed files with 1 additions and 1 deletions

View File

@ -189,7 +189,7 @@ bool BigramDictContent::runGCBigramList(const int bigramListPos,
// Update has next flag in the last written entry.
const BigramEntry bigramEntry = getBigramEntry(lastEntryPos).updateHasNextAndGetEntry(
false /* hasNext */);
if (!writeBigramEntry(&bigramEntry, writingPos)) {
if (!writeBigramEntry(&bigramEntry, lastEntryPos)) {
AKLOGE("Cannot write bigram entry to set hasNext flag after GC. pos: %d", writingPos);
return false;
}