diff options
| author | 2013-03-18 10:44:54 +0000 | |
|---|---|---|
| committer | 2013-03-18 10:44:54 +0000 | |
| commit | f1b0c374cb714f5a02b914bea387b6b573687eb8 (patch) | |
| tree | e508042c8370fb39b8acd5eb62247a7ad51310e0 /lib/libsqlite3/src/trigger.c | |
| parent | Provide a way for *drm(4) to prevent the VGA text console wsdisplay(4) instance (diff) | |
| download | wireguard-openbsd-f1b0c374cb714f5a02b914bea387b6b573687eb8.tar.xz wireguard-openbsd-f1b0c374cb714f5a02b914bea387b6b573687eb8.zip | |
update to 3.7.15.2, tested by landry@/miod@
Diffstat (limited to 'lib/libsqlite3/src/trigger.c')
| -rw-r--r-- | lib/libsqlite3/src/trigger.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/libsqlite3/src/trigger.c b/lib/libsqlite3/src/trigger.c index 8985ec6eb87..f1ff766e202 100644 --- a/lib/libsqlite3/src/trigger.c +++ b/lib/libsqlite3/src/trigger.c @@ -729,6 +729,15 @@ static int codeTriggerProgram( */ pParse->eOrconf = (orconf==OE_Default)?pStep->orconf:(u8)orconf; + /* Clear the cookieGoto flag. When coding triggers, the cookieGoto + ** variable is used as a flag to indicate to sqlite3ExprCodeConstants() + ** that it is not safe to refactor constants (this happens after the + ** start of the first loop in the SQL statement is coded - at that + ** point code may be conditionally executed, so it is no longer safe to + ** initialize constant register values). */ + assert( pParse->cookieGoto==0 || pParse->cookieGoto==-1 ); + pParse->cookieGoto = 0; + switch( pStep->op ){ case TK_UPDATE: { sqlite3Update(pParse, |
