1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-10 01:02:56 +03:00

Fix a syntax error that comes up when memory debugging is disabled. (CVS 4462)

FossilOrigin-Name: 96dd3c336b5bbf9da6ba9ace85dbe7c4b1ff2bcb
This commit is contained in:
drh
2007-10-03 21:10:58 +00:00
parent acb6dd7e50
commit e0ea9bf4a4
3 changed files with 9 additions and 9 deletions

View File

@@ -14,7 +14,7 @@
** other files are for internal use by SQLite and should not be
** accessed by users of the library.
**
** $Id: main.c,v 1.405 2007/10/03 08:46:45 danielk1977 Exp $
** $Id: main.c,v 1.406 2007/10/03 21:10:58 drh Exp $
*/
#include "sqliteInt.h"
#include <ctype.h>
@@ -245,7 +245,7 @@ void sqlite3RollbackAll(sqlite3 *db){
}
}
sqlite3VtabRollback(db);
sqlite3MallocLeaveBenignBlock(0); /* Leave benign region */
sqlite3MallocLeaveBenignBlock(); /* Leave benign region */
if( db->flags&SQLITE_InternChanges ){
sqlite3ExpirePreparedStatements(db);