]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Initialize a variable to avoid compiler warnings and human confusion.
authordrh <drh@noemail.net>
Wed, 20 Dec 2006 14:31:24 +0000 (14:31 +0000)
committerdrh <drh@noemail.net>
Wed, 20 Dec 2006 14:31:24 +0000 (14:31 +0000)
Ticket #2117. (CVS 3538)

FossilOrigin-Name: 951af8d5c57d665ee2ad3ee09ce34c023aa9e771

manifest
manifest.uuid
src/vdbe.c

index b0c51829a1c6032296bc67db4e75bbd3a8667b29..2d96c3b2a019c7107e160fdd426a869123beef8b 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Patch\sto\sget\sextension\sloading\sworking\son\swince.\s\sTicket\s#2023.\s(CVS\s3537)
-D 2006-12-20T03:37:35
+C Initialize\sa\svariable\sto\savoid\scompiler\swarnings\sand\shuman\sconfusion.\nTicket\s#2117.\s(CVS\s3538)
+D 2006-12-20T14:31:24
 F Makefile.in 8e14898d41a53033ecb687d93c9cd5d109fb9ae3
 F Makefile.linux-gcc 2d8574d1ba75f129aba2019f0b959db380a90935
 F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028
@@ -121,7 +121,7 @@ F src/update.c 951f95ef044cf6d28557c48dc35cb0711a0b9129
 F src/utf.c 67ecb1032bc0b42c105e88d65ef9d9f626eb0e1f
 F src/util.c 91d4cb189476906639ae611927d939691d1365f6
 F src/vacuum.c b620ffff5a84af88b970894a92bb330bd2b9fc45
-F src/vdbe.c 3e31f2e49423955afb2ac905ceacf54c679b1f28
+F src/vdbe.c b967a1692ca69e05c595d4c25ca14e1a97df8378
 F src/vdbe.h 9720cae673359dc2bdcb106285ecf686b7d3ef24
 F src/vdbeInt.h 1ca07f2d7446c90230346aed7fbf990c032460bc
 F src/vdbeapi.c 2d1e6843af8705a1172e54a418d2a3d5febd1dd7
@@ -423,7 +423,7 @@ F www/tclsqlite.tcl bb0d1357328a42b1993d78573e587c6dcbc964b9
 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
 F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b
 F www/whentouse.tcl 97e2b5cd296f7d8057e11f44427dea8a4c2db513
-P f245f5c2c2d337fe6458824beb7f9e721837765f
-R 73af098ac8d3872ee5d1cf0975d597ce
+P a81f3ddfd0626ae642c5ffd27a23c568d06f58dc
+R b4376c2c890f2d1c64ba83335f247288
 U drh
-Z 8fbc1ec3a565ddb0cd82d7fc7f801e89
+Z fa0b105ee6d7dd9bdfaf3037e9f54072
index 27a88f27445620e7ad04129bd7dc793f96604fb2..1281d7b8c4d12b450c8464ffb32d4c853b019ad1 100644 (file)
@@ -1 +1 @@
-a81f3ddfd0626ae642c5ffd27a23c568d06f58dc
\ No newline at end of file
+951af8d5c57d665ee2ad3ee09ce34c023aa9e771
\ No newline at end of file
index 801887b9a3a52e7769abbcfa0d95f685c737565c..adc99fd541b457625b485a67940d8842ac520c6f 100644 (file)
@@ -43,7 +43,7 @@
 ** in this file for details.  If in doubt, do not deviate from existing
 ** commenting and indentation practices when changing or adding code.
 **
-** $Id: vdbe.c,v 1.579 2006/10/28 00:28:09 drh Exp $
+** $Id: vdbe.c,v 1.580 2006/12/20 14:31:24 drh Exp $
 */
 #include "sqliteInt.h"
 #include "os.h"
@@ -4644,7 +4644,7 @@ case OP_VFilter: {   /* no-push */
 
   /* Invoke the xFilter method if one is defined. */
   if( pModule->xFilter ){
-    int res;
+    int res = 0;
     int i;
     Mem **apArg = p->apArg;
     for(i = 0; i<nArg; i++){