]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Remove redundant variable. (CVS 3565)
authordrh <drh@noemail.net>
Fri, 5 Jan 2007 14:41:06 +0000 (14:41 +0000)
committerdrh <drh@noemail.net>
Fri, 5 Jan 2007 14:41:06 +0000 (14:41 +0000)
FossilOrigin-Name: 2a7f5aaf8245026edf9cd8f6abc90e87cd7747b2

manifest
manifest.uuid
src/vtab.c

index 726977456ec92af1d1ff6dfc9ea9a2f752432af7..6294d539fcc29e894af876edf7224fbae66961a1 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Suppress\scompiler\swarnings.\s\sFix\sa\sbug\sin\sIO\serror\sdetection\son\swindows.\s(CVS\s3564)
-D 2007-01-05T14:38:55
+C Remove\sredundant\svariable.\s(CVS\s3565)
+D 2007-01-05T14:41:07
 F Makefile.in 63a71177ed4355c829229affe11167bd28c85884
 F Makefile.linux-gcc 2d8574d1ba75f129aba2019f0b959db380a90935
 F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028
@@ -128,7 +128,7 @@ F src/vdbeapi.c 2d1e6843af8705a1172e54a418d2a3d5febd1dd7
 F src/vdbeaux.c 05cc6f0f82b86dfb4c356e06ab07ec8cc83a2eda
 F src/vdbefifo.c 9efb94c8c3f4c979ebd0028219483f88e57584f5
 F src/vdbemem.c 26623176bf1c616aa478da958fac49502491a921
-F src/vtab.c aa30e940058ea56a1b7a9a7019ec21d307316fb4
+F src/vtab.c 2e367db8c41ac099ba7b7690f4e9bc3c509436ff
 F src/where.c f55d4459a122457a135cf9ec859bf28777d9156f
 F tclinstaller.tcl 046e3624671962dc50f0481d7c25b38ef803eb42
 F test/aggerror.test a867e273ef9e3d7919f03ef4f0e8c0d2767944f2
@@ -424,7 +424,7 @@ F www/tclsqlite.tcl bb0d1357328a42b1993d78573e587c6dcbc964b9
 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
 F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b
 F www/whentouse.tcl 97e2b5cd296f7d8057e11f44427dea8a4c2db513
-P 36a2db96efa7f227c0a39e58fd83d56cc491472b
-R 183f1098460ebbbe4a129f04691aed7c
+P daed2bab00ea3952d2d4e5182ca07653b9d80ac2
+R 682762e99f842caa3ef1c552bdcdd916
 U drh
-Z 3650492f3e5498adfa58ed2b5474eab6
+Z ef5922c8b89aebabf4feb9c24e691f37
index e38be80640def74d7f1088292ffb4b6c6d19d30d..d49fd370fba865704cb1ef23b72161170556da0b 100644 (file)
@@ -1 +1 @@
-daed2bab00ea3952d2d4e5182ca07653b9d80ac2
\ No newline at end of file
+2a7f5aaf8245026edf9cd8f6abc90e87cd7747b2
\ No newline at end of file
index 5003401e7ac05e665e17b240c6bbbe5e7176c4a1..7d837e70702dda4118fd69ca3a8a0a7115908527 100644 (file)
@@ -11,7 +11,7 @@
 *************************************************************************
 ** This file contains code used to help implement virtual tables.
 **
-** $Id: vtab.c,v 1.37 2006/09/18 20:24:03 drh Exp $
+** $Id: vtab.c,v 1.38 2007/01/05 14:41:07 drh Exp $
 */
 #ifndef SQLITE_OMIT_VIRTUALTABLE
 #include "sqliteInt.h"
@@ -340,7 +340,6 @@ static int vtabCallConstructor(
 */
 int sqlite3VtabCallConnect(Parse *pParse, Table *pTab){
   Module *pMod;
-  const char *zModule;
   int rc = SQLITE_OK;
 
   if( !pTab || !pTab->isVirtual || pTab->pVtab ){
@@ -348,7 +347,6 @@ int sqlite3VtabCallConnect(Parse *pParse, Table *pTab){
   }
 
   pMod = pTab->pMod;
-  zModule = pTab->azModuleArg[0];
   if( !pMod ){
     const char *zModule = pTab->azModuleArg[0];
     sqlite3ErrorMsg(pParse, "no such module: %s", zModule);