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

Remove a NEVER() from a branch that is now reachable during OOM faults.

FossilOrigin-Name: 18bdcb05c26860643f53a6b9e85f84109a3ebe5a
This commit is contained in:
drh
2013-11-25 21:41:24 +00:00
parent fd8c88de9d
commit d16546da78
3 changed files with 8 additions and 9 deletions

View File

@@ -4219,7 +4219,7 @@ static const unsigned char *fetchPayload(
assert( cursorHoldsMutex(pCur) );
pPage = pCur->apPage[pCur->iPage];
assert( pCur->aiIdx[pCur->iPage]<pPage->nCell );
if( NEVER(pCur->info.nSize==0) ){
if( pCur->info.nSize==0 ){
btreeParseCell(pCur->apPage[pCur->iPage], pCur->aiIdx[pCur->iPage],
&pCur->info);
}