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

Fix a harmless compiler warning.

FossilOrigin-Name: 1eb69c64ed4a11601698000573c507684bc4b0366336ba0748ebd661644d0902
This commit is contained in:
drh
2021-02-03 13:20:12 +00:00
parent cd39cda00c
commit c5eb176a09
3 changed files with 7 additions and 9 deletions

View File

@@ -480,7 +480,6 @@ static int fixSelectCb(Walker *p, Select *pSelect){
#endif
}
if( pSelect->pWith ){
int i;
for(i=0; i<pSelect->pWith->nCte; i++){
if( sqlite3WalkSelect(p, pSelect->pWith->a[i].pSelect) ){
return WRC_Abort;