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

Remove an unused variable.

FossilOrigin-Name: 5c4d94147d290d4a68ac0d5ae8f9e6bbfe7522ad58b2298e387f8c699048e111
This commit is contained in:
drh
2022-12-19 19:04:32 +00:00
parent c6c1d7bfbd
commit b7fe3cb890
3 changed files with 8 additions and 9 deletions

View File

@@ -426,7 +426,6 @@ static int memdbLock(sqlite3_file *pFile, int eLock){
static int memdbUnlock(sqlite3_file *pFile, int eLock){
MemFile *pThis = (MemFile*)pFile;
MemStore *p = pThis->pStore;
int rc = SQLITE_OK;
if( eLock>=pThis->eLock ) return SQLITE_OK;
memdbEnter(p);