mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-05 15:55:57 +03:00
Fix a memory leak in test_journal.c causing tests to fail.
FossilOrigin-Name: f229487cccc7514b2663e8e6e04798702c9cfb10
This commit is contained in:
@@ -901,7 +901,7 @@ static char *print_pager_state(Pager *p){
|
||||
p->eState==PAGER_WRITER_FINISHED ? "WRITER_FINISHED" :
|
||||
p->eState==PAGER_ERROR ? "ERROR" : "?error?"
|
||||
, (int)p->errCode
|
||||
, p->eLock==NO_LOCK ? "OPEN" :
|
||||
, p->eLock==NO_LOCK ? "NO_LOCK" :
|
||||
p->eLock==RESERVED_LOCK ? "RESERVED" :
|
||||
p->eLock==EXCLUSIVE_LOCK ? "EXCLUSIVE" :
|
||||
p->eLock==SHARED_LOCK ? "SHARED" :
|
||||
|
Reference in New Issue
Block a user