1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-12-21 13:38:01 +03:00

Back out a recently added NEVER().

FossilOrigin-Name: 4fcdd5bdb061d550b4a35594eb16c9a1699c76caf1d906f1781b4f9cb29ac80c
This commit is contained in:
drh
2025-08-05 00:16:40 +00:00
parent a37bf61539
commit eff534e1a5
3 changed files with 9 additions and 8 deletions

View File

@@ -5358,7 +5358,7 @@ static void unixRemapfile(
#endif
/* The attempt to extend the existing mapping failed. Free it. */
if( pNew==MAP_FAILED || NEVER(pNew==0) ){
if( pNew==MAP_FAILED || pNew==0 ){
osMunmap(pOrig, nReuse);
}
}