diff options
author | Jean-Baptiste Queru <jbq@google.com> | 2013-07-08 12:37:29 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2013-07-08 12:37:29 -0700 |
commit | 8734f88c49b83be812d1254b9c8abc8760a6770c (patch) | |
tree | 777b441b161f422e637e1839588ca6e409458774 /dist/sqlite3.c | |
parent | 3c95d6dacee2a339db4e0eae5691ff2c5875e31a (diff) | |
parent | 11ce9fa9f26b5ff08411c5acf4cf0613d656f8d8 (diff) |
am 11ce9fa9: Merge "Fix for fts backward compatibility of previous commit"
* commit '11ce9fa9f26b5ff08411c5acf4cf0613d656f8d8':
Fix for fts backward compatibility of previous commit
Diffstat (limited to 'dist/sqlite3.c')
-rw-r--r-- | dist/sqlite3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/sqlite3.c b/dist/sqlite3.c index a43031b..c6c8a5e 100644 --- a/dist/sqlite3.c +++ b/dist/sqlite3.c @@ -120250,7 +120250,7 @@ SQLITE_PRIVATE int sqlite3Fts3Init(sqlite3 *db){ if(rc) return rc; #endif rc = sqlite3_create_module_v2( - db, "fts3", &fts3Module, (void *)pHash, 0 + db, "fts3", &fts3Module, (void *)pHash, hashDestroy ); if( rc==SQLITE_OK ){ rc = sqlite3_create_module_v2( |