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; |