Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b7fbc964 authored by Keisuke Kuroynagi's avatar Keisuke Kuroynagi Committed by Android Git Automerger
Browse files

am 3f557f6d: Merge "Fix: appendTwoWords cannot handle MAX_WORD_LENGTH-chars word."

* commit '3f557f6d':
  Fix: appendTwoWords cannot handle MAX_WORD_LENGTH-chars word.
parents befe69f5 3f557f6d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -150,7 +150,7 @@ namespace latinime {
        }
        actualLength1 = i + 1;
    }
    actualLength1 = min(actualLength1, MAX_WORD_LENGTH - actualLength0 - 1);
    actualLength1 = min(actualLength1, MAX_WORD_LENGTH - actualLength0);
    memcpy(&dest[actualLength0], src1, actualLength1 * sizeof(dest[0]));
    return actualLength0 + actualLength1;
}