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

Dbsqlfuzz discovered a case where a bytecode branch is in fact taken, so change

the designator from VdbeCoverageNeverTaken() to VdbeCoverage().  Test case
in TH3.

FossilOrigin-Name: 988a2a759f2b9da0e287e65306039b7a3e2b5aac3d31fe15cbb30d30ea6caf71
This commit is contained in:
drh
2022-06-15 12:32:27 +00:00
parent 27a242c634
commit 10c5341c72
3 changed files with 8 additions and 8 deletions

View File

@@ -1028,7 +1028,7 @@ void sqlite3Update(
}else{
sqlite3VdbeAddOp3(v, OP_NotExists, iDataCur, labelContinue,regOldRowid);
}
VdbeCoverageNeverTaken(v);
VdbeCoverage(v);
}
/* Do FK constraint checks. */