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:
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user