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

Fix to check-in [f221f31eff]: Make sure local variable rc is declared even

when compiled without SQLITE_DEBUG.

FossilOrigin-Name: 7a9a35327c55452e858335933ce11669fc888aeb
This commit is contained in:
drh
2009-12-05 18:34:08 +00:00
parent d1f7e92624
commit dc9b5f8ee3
3 changed files with 19 additions and 9 deletions

View File

@@ -5579,7 +5579,7 @@ static void copyNodeContent(MemPage *pFrom, MemPage *pTo, int *pRC){
u8 * const aTo = pTo->aData;
int const iFromHdr = pFrom->hdrOffset;
int const iToHdr = ((pTo->pgno==1) ? 100 : 0);
TESTONLY(int rc;)
int rc;
int iData;