1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-14 00:22:38 +03:00

Fix some warnings about unused and uninitialized variables. (CVS 3788)

FossilOrigin-Name: 18aec1ddfb08b74f0ef9cf1215eac7af71449db3
This commit is contained in:
drh
2007-04-01 23:49:51 +00:00
parent 2c547df6cf
commit 61fc595fdd
10 changed files with 26 additions and 34 deletions

View File

@@ -12,7 +12,7 @@
** This file contains C code routines that are called by the parser
** to handle SELECT statements in SQLite.
**
** $Id: select.c,v 1.331 2007/03/29 05:51:49 drh Exp $
** $Id: select.c,v 1.332 2007/04/01 23:49:52 drh Exp $
*/
#include "sqliteInt.h"
@@ -694,7 +694,7 @@ static void generateSortTail(
int cont = sqlite3VdbeMakeLabel(v);
int addr;
int iTab;
int pseudoTab;
int pseudoTab = 0;
ExprList *pOrderBy = p->pOrderBy;
iTab = pOrderBy->iECursor;