1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-14 00:22:38 +03:00

Fix a compiler warning and an unreachable branch. Restore 100% branch test

coverage.

FossilOrigin-Name: 4dc148bb4cec5ecba167cdcb4959a4f0fa05a96f
This commit is contained in:
drh
2011-04-01 01:38:02 +00:00
parent 661d71af8c
commit 76a32a81e4
6 changed files with 13 additions and 13 deletions

View File

@@ -559,7 +559,8 @@ void sqlite3VdbeChangeP5(Vdbe *p, u8 val){
** the address of the next instruction to be coded.
*/
void sqlite3VdbeJumpHere(Vdbe *p, int addr){
if( addr>=0 ) sqlite3VdbeChangeP2(p, addr, p->nOp);
assert( addr>=0 );
sqlite3VdbeChangeP2(p, addr, p->nOp);
}