diff options
author | danielk1977 <danielk1977@noemail.net> | 2006-06-24 08:51:05 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2006-06-24 08:51:05 +0000 |
commit | 33b3933c1501a4f2e37f9439f772fbc6443a90a5 (patch) | |
tree | c1a2e1b0369ea1f40477ac9abe18d50e9a14fb58 /src/tokenize.c | |
parent | cc013f891ce1490d2fa7e173391ca155b05b673e (diff) | |
download | sqlite-33b3933c1501a4f2e37f9439f772fbc6443a90a5.tar.gz sqlite-33b3933c1501a4f2e37f9439f772fbc6443a90a5.zip |
Ensure whitespace specified as part of a virtual table constructor argument is correctly passed to the constructor function. (CVS 3290)
FossilOrigin-Name: 4630e11d9a697a7fa29a0a1bbca91da4ad2bde7b
Diffstat (limited to 'src/tokenize.c')
-rw-r--r-- | src/tokenize.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/tokenize.c b/src/tokenize.c index c50395aeb..ea584b1cd 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.120 2006/06/12 11:24:37 danielk1977 Exp $ +** $Id: tokenize.c,v 1.121 2006/06/24 08:51:05 danielk1977 Exp $ */ #include "sqliteInt.h" #include "os.h" @@ -484,10 +484,6 @@ abort_parse: } #endif -#ifndef SQLITE_OMIT_VIRTUALTABLE - sqliteFree(pParse->zArg); -#endif - if( !IN_DECLARE_VTAB ){ /* If the pParse->declareVtab flag is set, do not delete any table ** structure built up in pParse->pNewTable. The calling code (see vtab.c) |