1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-12 13:01:09 +03:00

Fix a harmless uninitialized variable warning.

FossilOrigin-Name: 9d3ef3bd2c6281784a537a22a87279f420649935
This commit is contained in:
drh
2013-06-19 13:32:46 +00:00
parent dbb80234da
commit e8ae583ebd
3 changed files with 8 additions and 8 deletions

View File

@@ -4909,7 +4909,7 @@ static int wherePathSatisfiesOrderBy(
int i, j; /* Loop counters */
int iCur; /* Cursor number for current WhereLoop */
int iColumn; /* A column number within table iCur */
WhereLoop *pLoop; /* Current WhereLoop being processed. */
WhereLoop *pLoop = 0; /* Current WhereLoop being processed. */
WhereTerm *pTerm; /* A single term of the WHERE clause */
Expr *pOBExpr; /* An expression from the ORDER BY clause */
CollSeq *pColl; /* COLLATE function from an ORDER BY clause term */