diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/btree.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/btree.c b/src/btree.c index 3409f413b..67a64a91f 100644 --- a/src/btree.c +++ b/src/btree.c @@ -7039,8 +7039,7 @@ static int balance_quick(MemPage *pParent, MemPage *pPage, u8 *pSpace){ assert( sqlite3PagerIswriteable(pParent->pDbPage) ); assert( pPage->nOverflow==1 ); - /* This error condition is now caught prior to reaching this function */ - if( NEVER(pPage->nCell==0) ) return SQLITE_CORRUPT_BKPT; + if( pPage->nCell==0 ) return SQLITE_CORRUPT_BKPT; /* dbfuzz001.test */ /* Allocate a new page. This page will become the right-sibling of ** pPage. Make the parent page writable, so that the new divider cell |