diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/wal.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -3710,7 +3710,9 @@ int sqlite3WalFrames( if( rc ) return rc; } } - if( (int)pWal->szPage!=szPage ) return SQLITE_CORRUPT_BKPT; + if( (int)pWal->szPage!=szPage ){ + return SQLITE_CORRUPT_BKPT; /* TH3 test case: cov1/corrupt155.test */ + } /* Setup information needed to write frames into the WAL */ w.pWal = pWal; |