1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-02 05:54:29 +03:00

Make sure the Vdbe.expmask value is set correctly in sqlite3VdbeSwap().

This fixes a problem introduced by [a8fd7052].

FossilOrigin-Name: 29f54b899e5cf22ece98ab41c39c41d75a4b228d
This commit is contained in:
drh
2017-03-02 13:13:30 +00:00
parent 2147221c36
commit 76adb23980
3 changed files with 9 additions and 8 deletions

View File

@@ -86,6 +86,7 @@ void sqlite3VdbeSwap(Vdbe *pA, Vdbe *pB){
pA->zSql = pB->zSql;
pB->zSql = zTmp;
pB->isPrepareV2 = pA->isPrepareV2;
pB->expmask = pA->expmask;
}
/*