1
0
mirror of https://github.com/sqlite/sqlite.git synced 2026-01-06 08:01:16 +03:00

Fix an error introduced with (2299). (CVS 2301)

FossilOrigin-Name: 22041d5f26355b0fc80eb355bfec897fb50ac1e1
This commit is contained in:
danielk1977
2005-02-01 03:46:43 +00:00
parent 490a73bcde
commit 441daf68d2
3 changed files with 14 additions and 12 deletions

View File

@@ -22,7 +22,7 @@
** COMMIT
** ROLLBACK
**
** $Id: build.c,v 1.307 2005/02/01 03:09:52 danielk1977 Exp $
** $Id: build.c,v 1.308 2005/02/01 03:46:44 danielk1977 Exp $
*/
#include "sqliteInt.h"
#include <ctype.h>
@@ -52,8 +52,10 @@ void sqlite3FinishCoding(Parse *pParse){
if( sqlite3_malloc_failed ) return;
if( pParse->nested ) return;
if( !pParse->pVdbe ) return;
if( !pParse->pVdbe ){
pParse->rc = pParse->nErr ? SQLITE_ERROR : SQLITE_DONE;
return;
}
/* Begin by generating some termination code at the end of the
** vdbe program
@@ -98,7 +100,7 @@ void sqlite3FinishCoding(Parse *pParse){
sqlite3VdbeTrace(v, trace);
sqlite3VdbeMakeReady(v, pParse->nVar, pParse->nMem+3,
pParse->nTab+3, pParse->nMaxDepth+1, pParse->explain);
pParse->rc = pParse->nErr ? SQLITE_ERROR : SQLITE_DONE;
pParse->rc = SQLITE_DONE;
pParse->colNamesSet = 0;
}else if( pParse->rc==SQLITE_OK ){
pParse->rc = SQLITE_ERROR;