aboutsummaryrefslogtreecommitdiff
path: root/src/vdbeaux.c
diff options
context:
space:
mode:
authordanielk1977 <danielk1977@noemail.net>2008-04-24 08:36:51 +0000
committerdanielk1977 <danielk1977@noemail.net>2008-04-24 08:36:51 +0000
commitecc91f686848b4584d0dfbfcbe96df17610645a5 (patch)
treea22d622cea9b16b1c3bb8cf36c69a0473b880752 /src/vdbeaux.c
parent9a9b1564cf53e29a7e1372a128e3941dad4832a1 (diff)
downloadsqlite-ecc91f686848b4584d0dfbfcbe96df17610645a5.tar.gz
sqlite-ecc91f686848b4584d0dfbfcbe96df17610645a5.zip
Remove redundant assert() statement from vdbeaux.c. Ticket #3065. (CVS 5039)
FossilOrigin-Name: 3cba1166076bf0506597e2d7686a271922817668
Diffstat (limited to 'src/vdbeaux.c')
-rw-r--r--src/vdbeaux.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/vdbeaux.c b/src/vdbeaux.c
index e9d481f14..c46214a3a 100644
--- a/src/vdbeaux.c
+++ b/src/vdbeaux.c
@@ -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;
}