diff options
author | drh <drh@noemail.net> | 2007-10-20 16:36:31 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2007-10-20 16:36:31 +0000 |
commit | 979aeaa395b51b49f07b5573508658126a0b7d2b (patch) | |
tree | fc52d6293169d8804faa774474ceeaa235ebeb0c /src/malloc.c | |
parent | c0ad3e8df68ad6e3210b2ce8188d7dd3e11e11dd (diff) | |
download | sqlite-979aeaa395b51b49f07b5573508658126a0b7d2b.tar.gz sqlite-979aeaa395b51b49f07b5573508658126a0b7d2b.zip |
Add the new memory allocator to the amalgamation. Improvements to
out-of-memory handling. (CVS 4498)
FossilOrigin-Name: b58c2b37a5deb19ce0ef78629989016743a46bb3
Diffstat (limited to 'src/malloc.c')
-rw-r--r-- | src/malloc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/malloc.c b/src/malloc.c index bc321ab9a..a04734868 100644 --- a/src/malloc.c +++ b/src/malloc.c @@ -12,7 +12,7 @@ ** Memory allocation functions used throughout sqlite. ** ** -** $Id: malloc.c,v 1.13 2007/08/29 14:06:23 danielk1977 Exp $ +** $Id: malloc.c,v 1.14 2007/10/20 16:36:31 drh Exp $ */ #include "sqliteInt.h" #include <stdarg.h> @@ -237,4 +237,3 @@ int sqlite3ApiExit(sqlite3* db, int rc){ } return rc & (db ? db->errMask : 0xff); } - |