diff options
author | danielk1977 <danielk1977@noemail.net> | 2008-07-25 08:48:59 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2008-07-25 08:48:59 +0000 |
commit | 31fab4f30bfe449c7c80bb61d8d68956ad00fe45 (patch) | |
tree | 0c595c238d0c92d69635fb9b1338a25fe20ed96d /src/main.c | |
parent | 2abcd58f09da0d98118c4a2d2cb78f40dbc6a2ca (diff) | |
download | sqlite-31fab4f30bfe449c7c80bb61d8d68956ad00fe45.tar.gz sqlite-31fab4f30bfe449c7c80bb61d8d68956ad00fe45.zip |
Updates to mem6.c allocator. (CVS 5473)
FossilOrigin-Name: 43a4cae2acea33d1a17c0037516e9c27fb7e8e91
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c index 8cd1d6414..cf5587839 100644 --- a/src/main.c +++ b/src/main.c @@ -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.481 2008/07/24 08:20:40 danielk1977 Exp $ +** $Id: main.c,v 1.482 2008/07/25 08:49:00 danielk1977 Exp $ */ #include "sqliteInt.h" #include <ctype.h> @@ -269,6 +269,7 @@ int sqlite3_config(int op, ...){ #if defined(SQLITE_ENABLE_MEMSYS6) case SQLITE_CONFIG_CHUNKALLOC: { + sqlite3Config.nSmall = va_arg(ap, int); sqlite3Config.m = *sqlite3MemGetMemsys6(); break; } |