diff options
author | drh <drh@noemail.net> | 2003-07-16 00:54:31 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2003-07-16 00:54:31 +0000 |
commit | d4f5ee28052aa23fc65b76bc4e9207ebb843f375 (patch) | |
tree | 3c48e8c23b639b86da084917cd9d20e71d612c8b /src | |
parent | da808d56dc50408d7b61ee1458ed44cfd812a62c (diff) | |
download | sqlite-d4f5ee28052aa23fc65b76bc4e9207ebb843f375.tar.gz sqlite-d4f5ee28052aa23fc65b76bc4e9207ebb843f375.zip |
Initialize a variable to prevent an MSVC compiler warning. Ticket #394. (CVS 1051)
FossilOrigin-Name: 96e3c539586bf86c4fe8de0ac25de6655f704035
Diffstat (limited to 'src')
-rw-r--r-- | src/where.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/where.c b/src/where.c index a0504ec6d..963b2072b 100644 --- a/src/where.c +++ b/src/where.c @@ -12,7 +12,7 @@ ** This module contains C code that generates VDBE code used to process ** the WHERE clause of SQL statements. ** -** $Id: where.c,v 1.80 2003/07/06 17:22:25 drh Exp $ +** $Id: where.c,v 1.81 2003/07/16 00:54:31 drh Exp $ */ #include "sqliteInt.h" @@ -358,7 +358,7 @@ WhereInfo *sqliteWhereBegin( int i; /* Loop counter */ WhereInfo *pWInfo; /* Will become the return value of this function */ Vdbe *v = pParse->pVdbe; /* The virtual database engine */ - int brk, cont; /* Addresses used during code generation */ + int brk, cont = 0; /* Addresses used during code generation */ int nExpr; /* Number of subexpressions in the WHERE clause */ int loopMask; /* One bit set for each outer loop */ int haveKey; /* True if KEY is on the stack */ |