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

Remove a redundant assignment from the VM.

FossilOrigin-Name: d0dabe2f37b5fa7c2c6bb728b8591af00cdd835b
This commit is contained in:
drh
2012-01-18 01:14:42 +00:00
parent 14a55b7122
commit 3f4aab1cc9
3 changed files with 8 additions and 9 deletions

View File

@@ -5167,7 +5167,6 @@ case OP_Program: { /* jump */
p->nOp = pProgram->nOp;
p->aOnceFlag = (u8 *)&p->apCsr[p->nCursor];
p->nOnceFlag = pProgram->nOnce;
p->nOp = pProgram->nOp;
pc = -1;
memset(p->aOnceFlag, 0, p->nOnceFlag);