Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(282)

Side by Side Diff: patches/greek_upper.patch

Issue 2499493002: Cherry pick 2 more patches from the upstream (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « README.chromium ('k') | patches/uspoof.patch » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 Index: source/common/ucasemap.cpp
2 ===================================================================
3 --- source/common/ucasemap.cpp (revision 39499)
4 +++ source/common/ucasemap.cpp (revision 39500)
5 @@ -200,7 +200,7 @@
6 return -1; // integer overflow
7 }
8 int32_t limit=destIndex+length;
9 - if(limit<destCapacity) {
10 + if(limit<=destCapacity) {
11 U8_APPEND_UNSAFE(dest, destIndex, c);
12 }
13 return limit;
OLDNEW
« no previous file with comments | « README.chromium ('k') | patches/uspoof.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698