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

Fix a bug in the VDBE that occurs when a CreateTable or CreateIndex fails. (CVS 1211)

FossilOrigin-Name: 42cfd541dcc31d1ef92387e3fd2346db61d0ecbd
This commit is contained in:
drh
2004-02-08 06:17:19 +00:00
parent 585a3d7c22
commit f1b07b0ca2
3 changed files with 10 additions and 8 deletions

View File

@@ -43,7 +43,7 @@
** in this file for details. If in doubt, do not deviate from existing
** commenting and indentation practices when changing or adding code.
**
** $Id: vdbe.c,v 1.255 2004/01/31 20:40:42 drh Exp $
** $Id: vdbe.c,v 1.256 2004/02/08 06:17:20 drh Exp $
*/
#include "sqliteInt.h"
#include "os.h"
@@ -3678,6 +3678,8 @@ case OP_CreateTable: {
pTos->flags = MEM_Int;
*(u32*)pOp->p3 = pgno;
pOp->p3 = 0;
}else{
pTos->flags = MEM_Null;
}
break;
}