1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Remove redundant variable. (CVS 3565)

FossilOrigin-Name: 2a7f5aaf8245026edf9cd8f6abc90e87cd7747b2
This commit is contained in:
drh
2007-01-05 14:41:06 +00:00
parent aedd892e0c
commit df09df6ad4
3 changed files with 8 additions and 10 deletions

View File

@@ -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

View File

@@ -1 +1 @@
daed2bab00ea3952d2d4e5182ca07653b9d80ac2
2a7f5aaf8245026edf9cd8f6abc90e87cd7747b2

View 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);