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

Remove a NEVER() that was added in the previous check-in because it is in fact

reachable.

FossilOrigin-Name: 74eba2558a81f9e790d95a12a0c5379d4f80b43c8698ef9d6a31ff8d160a53d8
This commit is contained in:
drh
2019-05-08 03:34:53 +00:00
parent dfcecdfea8
commit d2cfbea2a4
4 changed files with 9 additions and 9 deletions

View File

@@ -8068,7 +8068,7 @@ static int balance_nonroot(
assert( sz<=pBt->maxLocal+23 );
assert( iOvflSpace <= (int)pBt->pageSize );
insertCell(pParent, nxDiv+i, pCell, sz, pTemp, pNew->pgno, &rc);
if( NEVER(rc!=SQLITE_OK) ) goto balance_cleanup;
if( rc!=SQLITE_OK ) goto balance_cleanup;
assert( sqlite3PagerIswriteable(pParent->pDbPage) );
}