1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-14 00:22:38 +03:00

Remove redundant assert() statement from vdbeaux.c. Ticket #3065. (CVS 5039)

FossilOrigin-Name: 3cba1166076bf0506597e2d7686a271922817668
This commit is contained in:
danielk1977
2008-04-24 08:36:51 +00:00
parent 9a9b1564cf
commit ecc91f6868
3 changed files with 8 additions and 9 deletions

View File

@@ -14,7 +14,7 @@
** to version 2.8.7, all this code was combined into the vdbe.c source file.
** But that file was getting too big so this subroutines were split out.
**
** $Id: vdbeaux.c,v 1.377 2008/04/24 08:31:52 danielk1977 Exp $
** $Id: vdbeaux.c,v 1.378 2008/04/24 08:36:51 danielk1977 Exp $
*/
#include "sqliteInt.h"
#include <ctype.h>
@@ -1656,7 +1656,6 @@ int sqlite3VdbeHalt(Vdbe *p){
if( p->db->mallocFailed ){
p->rc = SQLITE_NOMEM;
}
checkActiveVdbeCnt(db);
return SQLITE_OK;
}