1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-16 23:02:26 +03:00

Fix a harmless compiler warning.

FossilOrigin-Name: 83ec01e38cbd22147ba544e15eae32c72e0523a55b54851e483dc2effc64f206
This commit is contained in:
drh
2021-01-13 21:05:07 +00:00
parent af7b76534b
commit 5e5683ae46
3 changed files with 11 additions and 11 deletions

View File

@@ -571,10 +571,10 @@ void sqlite3ParserReset(Parse *pParse){
pThis = pNext;
}
while( pParse->pCleanup ){
ParseCleanup *pThis = pParse->pCleanup;
pParse->pCleanup = pThis->pNext;
pThis->xCleanup(db, pThis->pPtr);
sqlite3DbFree(db, pThis);
ParseCleanup *pCleanup = pParse->pCleanup;
pParse->pCleanup = pCleanup->pNext;
pCleanup->xCleanup(db, pCleanup->pPtr);
sqlite3DbFree(db, pCleanup);
}
sqlite3DbFree(db, pParse->aLabel);
if( pParse->pConstExpr ){