diff options
author | drh <drh@noemail.net> | 2004-02-14 23:59:57 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2004-02-14 23:59:57 +0000 |
commit | 826fb5a3f848055d45d660868d754b1a2f7153a0 (patch) | |
tree | 6189f031ced89de568977a0d3ba1ccc02c4afe35 /src/tokenize.c | |
parent | 1d85d93158397be278cf2719324313bec46353f7 (diff) | |
download | sqlite-826fb5a3f848055d45d660868d754b1a2f7153a0.tar.gz sqlite-826fb5a3f848055d45d660868d754b1a2f7153a0.zip |
Eliminate obsolete code associated with the older callback functionality. (CVS 1243)
FossilOrigin-Name: 2dbc4593ca5c1cf75039c8b4471b1e47faa849f0
Diffstat (limited to 'src/tokenize.c')
-rw-r--r-- | src/tokenize.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tokenize.c b/src/tokenize.c index b2373b368..d0a34fed2 100644 --- a/src/tokenize.c +++ b/src/tokenize.c @@ -15,7 +15,7 @@ ** individual tokens and sends those tokens one-by-one over to the ** parser for analysis. ** -** $Id: tokenize.c,v 1.67 2004/01/08 02:17:33 drh Exp $ +** $Id: tokenize.c,v 1.68 2004/02/14 23:59:58 drh Exp $ */ #include "sqliteInt.h" #include "os.h" @@ -474,7 +474,7 @@ abort_parse: pParse->zErrMsg = 0; if( !nErr ) nErr++; } - if( pParse->pVdbe && (pParse->useCallback || pParse->nErr>0) ){ + if( pParse->pVdbe && pParse->nErr>0 ){ sqliteVdbeDelete(pParse->pVdbe); pParse->pVdbe = 0; } |