summaryrefslogtreecommitdiff
path: root/chromium/third_party/sqlite/patches/0009-fts3-Fix-uninit-variable-in-fts3EvalDeferredPhrase.patch
blob: fbc73b21632ca97c0357efae34d8024ec20a943b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
From 68cc26624a8e4fbbf0d41ac95269739920d11472 Mon Sep 17 00:00:00 2001
From: Scott Hess <shess@chromium.org>
Date: Thu, 12 Feb 2015 15:01:26 -0800
Subject: [PATCH 09/10] [fts3] Fix uninit variable in fts3EvalDeferredPhrase.

Chromium compiles with SQLITE_DISABLE_FTS4_DEFERRED since fts4 is
disabled.  That compiles away sqlite3Fts3DeferredTokenList() which
otherwise initialized pList and nList in fts3EvalDeferredPhrase().

BUG=458266
R=thakis@chromium.org
---
 third_party/sqlite/src/ext/fts3/fts3.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/third_party/sqlite/src/ext/fts3/fts3.c b/third_party/sqlite/src/ext/fts3/fts3.c
index 8f15099..a8d16a9 100644
--- a/third_party/sqlite/src/ext/fts3/fts3.c
+++ b/third_party/sqlite/src/ext/fts3/fts3.c
@@ -4149,8 +4149,8 @@ static int fts3EvalDeferredPhrase(Fts3Cursor *pCsr, Fts3Phrase *pPhrase){
     Fts3DeferredToken *pDeferred = pToken->pDeferred;
 
     if( pDeferred ){
-      char *pList;
-      int nList;
+      char *pList = 0;
+      int nList = 0;
       int rc = sqlite3Fts3DeferredTokenList(pDeferred, &pList, &nList);
       if( rc!=SQLITE_OK ) return rc;
 
-- 
2.7.0