1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-27 20:41:58 +03:00

Fix the return code in sessionRetryConstraints().

FossilOrigin-Name: ea917c14b940f95b20b91dae77567dc25a651ef6
This commit is contained in:
drh
2016-03-31 00:45:58 +00:00
parent d915152677
commit 7e0765a9ec
3 changed files with 9 additions and 12 deletions

View File

@ -3927,7 +3927,7 @@ static int sessionRetryConstraints(
}
rc2 = sqlite3changeset_finalize(pIter2);
if( rc==SQLITE_OK ) rc==rc2;
if( rc==SQLITE_OK ) rc = rc2;
}
assert( pApply->bDeferConstraints || pApply->constraints.nBuf==0 );