0
0
mirror of https://github.com/sqlite/sqlite.git synced 2024-12-01 17:23:42 +01:00

Fix an unitialized variable in fts2. (CVS 4128)

FossilOrigin-Name: c349cf942534357955f80fc2aa8c96206af97b78
This commit is contained in:
danielk1977 2007-06-26 10:55:01 +00:00
parent 034ca14f81
commit 4877ef2aae
3 changed files with 8 additions and 8 deletions

View File

@ -338,7 +338,7 @@ int sqlite3Fts2InitHashTable(
fts2Hash *pHash,
const char *zName
){
int rc;
int rc = SQLITE_OK;
void *p = (void *)pHash;
const int any = SQLITE_ANY;
char *zTest = 0;

View File

@ -1,5 +1,5 @@
C Allow\svirtual\stables\sto\smark\scolumns\sas\s'hidden'.\sHidden\scolumns\sdo\snot\sshow\nup\sin\s"*"\sexpansion,\sthe\simplicit\scolumn\slist\sof\san\sINSERT\sstatement,\sor\sthe\sresults\sof\sa\s"PRAGMA\stable_info"\sstatement.\s(CVS\s4127)
D 2007-06-26T10:38:54
C Fix\san\sunitialized\svariable\sin\sfts2.\s(CVS\s4128)
D 2007-06-26T10:55:02
F Makefile.in 7f7485a4cc039476a42e534b3f26ec90e2f9753e
F Makefile.linux-gcc 2d8574d1ba75f129aba2019f0b959db380a90935
F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028
@ -43,7 +43,7 @@ F ext/fts2/fts2_hash.c cafebb4620d19684c4c9872530012441df60f503
F ext/fts2/fts2_hash.h e283308156018329f042816eb09334df714e105e
F ext/fts2/fts2_icu.c 45b54d1e075020b35db20f69d829f95ca0651111
F ext/fts2/fts2_porter.c 991a45463553c7318063fe7773368a6c0f39e35d
F ext/fts2/fts2_tokenizer.c 89743aca26ba0746eab8037b966fc9714d82dc5f
F ext/fts2/fts2_tokenizer.c 5cec41326fabe65323945a46fa9495ee85c3d5fd
F ext/fts2/fts2_tokenizer.h 6d151c51382e8f6cf689c616bb697fe780478089
F ext/fts2/fts2_tokenizer1.c 719f6eb8cf94a8a5be6576c9b3d94d22deeea816
F ext/fts2/mkfts2amal.tcl 346454361d1c11e8839b629102d257bafcd7b3c7
@ -516,7 +516,7 @@ F www/tclsqlite.tcl 8be95ee6dba05eabcd27a9d91331c803f2ce2130
F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b
F www/whentouse.tcl fc46eae081251c3c181bd79c5faef8195d7991a5
P 4a7079a19ab5c36ed88cf597c21bf9f8b63bdf86
R 1e94a93b6821f455c11a54099eee8bff
P 7f887a6a00fdd6efc3740bd8a1731bb1abde087c
R 8f1b2e69d33343e0115fc4d9dde9fd6c
U danielk1977
Z 9b735fe91e23f76676dae3e37a5e71b2
Z edaaa8d4dcc9576b4fc81ef58100aecc

View File

@ -1 +1 @@
7f887a6a00fdd6efc3740bd8a1731bb1abde087c
c349cf942534357955f80fc2aa8c96206af97b78