1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-12-07 20:22:20 +03:00

Fix a harmless compiler warning on MacOS.

FossilOrigin-Name: 74328de1d720fb35a97b476034406ca17d35ff5f
This commit is contained in:
drh
2013-12-03 00:11:40 +00:00
parent 2a702db1cf
commit 47b927d2c3
3 changed files with 8 additions and 8 deletions

View File

@@ -2790,7 +2790,7 @@ Index *sqlite3CreateIndex(
const Column *pTabCol; /* A column in the table */
int nExtra = 0; /* Space allocated for zExtra[] */
int nExtraCol; /* Number of extra columns needed */
char *zExtra; /* Extra space after the Index object */
char *zExtra = 0; /* Extra space after the Index object */
Index *pPk = 0; /* PRIMARY KEY index for WITHOUT ROWID tables */
assert( pParse->nErr==0 ); /* Never called with prior errors */