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

Unified Diff: third_party/sqlite/ext/fts1/fts1_tokenizer1.c

Issue 174387: Fix issue 15261: Crash in history::TextDatabase::GetTextMatches... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 4 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/sqlite/ext/fts1/fts1.c ('k') | third_party/sqlite/ext/fts1/simple_tokenizer.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/ext/fts1/fts1_tokenizer1.c
===================================================================
--- third_party/sqlite/ext/fts1/fts1_tokenizer1.c (revision 25131)
+++ third_party/sqlite/ext/fts1/fts1_tokenizer1.c (working copy)
@@ -182,7 +182,7 @@
** case-insensitivity.
*/
unsigned char ch = p[iStartOffset+i];
- c->pToken[i] = ch<0x80 ? tolower(ch) : ch;
+ c->pToken[i] = (ch>='A' && ch<='Z') ? (ch-'A'+'a') : ch;
}
*ppToken = c->pToken;
*pnBytes = n;
« no previous file with comments | « third_party/sqlite/ext/fts1/fts1.c ('k') | third_party/sqlite/ext/fts1/simple_tokenizer.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698