Skip to content

Commit df925ab

Browse files
author
D. Richard Hipp
committed
Remove a NEVER() that might sometimes be tree following an OOM.
1 parent f1dd03d commit df925ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/where.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4991,7 +4991,7 @@ WhereInfo *sqlite3WhereBegin(
49914991
if( pWInfo->pOrderBy==0 && (db->flags & SQLITE_ReverseOrder)!=0 ){
49924992
pWInfo->revMask = ALLBITS;
49934993
}
4994-
if( pParse->nErr || NEVER(db->mallocFailed) ){
4994+
if( pParse->nErr || db->mallocFailed ){
49954995
goto whereBeginError;
49964996
}
49974997
#ifdef WHERETRACE_ENABLED

0 commit comments

Comments
 (0)