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

Check-in [8d5b76593d82b3a5] contained an error that was causing some obscure

error codes to be lost.  Fixed here.

FossilOrigin-Name: 46cdd3637d6a206ad2bcf8653cc6f2c7a886a16cc7685c45967938609941a755
This commit is contained in:
drh
2022-11-28 21:17:30 +00:00
parent 0b0070f1bd
commit d3fc2e63aa
3 changed files with 9 additions and 9 deletions

View File

@@ -7132,7 +7132,7 @@ static int insertCell(
** the entry for the overflow page into the pointer map.
*/
ptrmapPutOvflPtr(pPage, pPage, pCell, &rc2);
if( rc2 ) return rc;
if( rc2 ) return rc2;
}
#endif
}