]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix a harmless compiler warning in FTS3.
authordrh <drh@noemail.net>
Thu, 26 Mar 2015 14:29:51 +0000 (14:29 +0000)
committerdrh <drh@noemail.net>
Thu, 26 Mar 2015 14:29:51 +0000 (14:29 +0000)
FossilOrigin-Name: 1688f60c08cc9270948402d98a2333382aa32681

ext/fts3/fts3.c
manifest
manifest.uuid

index c92463204c11de650018effcb51f9a6433d3f26b..46b499e96bc3fc65657094e1bb721c848876d103 100644 (file)
@@ -1108,7 +1108,7 @@ static int fts3InitVtab(
   const char **aCol;              /* Array of column names */
   sqlite3_tokenizer *pTokenizer = 0;        /* Tokenizer for this table */
 
-  int nIndex;                     /* Size of aIndex[] array */
+  int nIndex = 0;                 /* Size of aIndex[] array */
   struct Fts3Index *aIndex = 0;   /* Array of indexes for this table */
 
   /* The results of parsing supported FTS4 key=value options: */
index 6fdfb0ad409f5ec1b0d98bc29769ec5db2c87229..c1312f11075f5c3c43c51ac9b439648321bb4740 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Change\san\sunreachable\sbranch\sinto\san\sassert().
-D 2015-03-25T18:29:10.982
+C Fix\sa\sharmless\scompiler\swarning\sin\sFTS3.
+D 2015-03-26T14:29:51.209
 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
 F Makefile.in 88a3e6261286db378fdffa1124cad11b3c05f5bb
 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -78,7 +78,7 @@ F ext/fts3/README.content fdc666a70d5257a64fee209f97cf89e0e6e32b51
 F ext/fts3/README.syntax a19711dc5458c20734b8e485e75fb1981ec2427a
 F ext/fts3/README.tokenizers e0a8b81383ea60d0334d274fadf305ea14a8c314
 F ext/fts3/README.txt 8c18f41574404623b76917b9da66fcb0ab38328d
-F ext/fts3/fts3.c 2a1cf23133d0c75ce296d17440c44115f8413ec7
+F ext/fts3/fts3.c d3f6f0e95d366f3c2028d916c36a0844bf805840
 F ext/fts3/fts3.h 3a10a0af180d502cecc50df77b1b22df142817fe
 F ext/fts3/fts3Int.h 394858c12a17740f7a1f6bd372c4606d4425a8d1
 F ext/fts3/fts3_aux.c 5c211e17a64885faeb16b9ba7772f9d5445c2365
@@ -1247,7 +1247,7 @@ F tool/vdbe_profile.tcl 67746953071a9f8f2f668b73fe899074e2c6d8c1
 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
 F tool/warnings.sh 0abfd78ceb09b7f7c27c688c8e3fe93268a13b32
 F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f
-P 37866b4d483296ab9b7fcb9f5486695d4c2b8ddd
-R 6f3611ab9d4988693f727ae20dc9c9e5
+P fb076b28c36975ff2e41440f22fe5de115c195da
+R 8441601541e00ddcb253d7949a1f1256
 U drh
-Z 3f028f44e21ab0b1619e9687cba7cf7a
+Z efb1de4d37ca897d2a6769bd7d529518
index 849f782137b5178c2001e3e5cd50b23f24d2ac93..5d911793d5444e4572636742420bfdf04728602e 100644 (file)
@@ -1 +1 @@
-fb076b28c36975ff2e41440f22fe5de115c195da
\ No newline at end of file
+1688f60c08cc9270948402d98a2333382aa32681
\ No newline at end of file