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

Unified Diff: third_party/sqlite/ext/fts3/fts3.c

Issue 2829042: Fix a fts3 typo/bug. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 6 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 | « no previous file | third_party/sqlite/fts3.patch » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/ext/fts3/fts3.c
===================================================================
--- third_party/sqlite/ext/fts3/fts3.c (revision 51581)
+++ third_party/sqlite/ext/fts3/fts3.c (working copy)
@@ -4717,7 +4717,7 @@
if( !n ) return SQLITE_CORRUPT_BKPT;
pReader->nData -= n;
pReader->pData += n;
- n += fts3GetVarint32Safe(pReader->pData, &nSuffix, pReader->nData);
+ n = fts3GetVarint32Safe(pReader->pData, &nSuffix, pReader->nData);
Scott Hess - ex-Googler 2010/07/03 01:37:26 I believe I complained about that exact line of co
if( !n ) return SQLITE_CORRUPT_BKPT;
pReader->nData -= n;
pReader->pData += n;
« no previous file with comments | « no previous file | third_party/sqlite/fts3.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698