diff options
author | drh <drh@noemail.net> | 2008-07-16 12:25:32 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2008-07-16 12:25:32 +0000 |
commit | 7830cd41baaa8181f395e5e45e47454706f360a5 (patch) | |
tree | 7ed5ed17149b2a202765844b60def6f435012c97 /src/main.c | |
parent | 2a6962adfea81a127d4e51f13a8cdad4921fcf6e (diff) | |
download | sqlite-7830cd41baaa8181f395e5e45e47454706f360a5.tar.gz sqlite-7830cd41baaa8181f395e5e45e47454706f360a5.zip |
Activate testing of mem3 and mem5. Fix problems found. Tickets #3223
and #3225. Other test configuration changes. (CVS 5419)
FossilOrigin-Name: a3a7820540f6f2285e6c83cac84383fc7d60d267
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.c b/src/main.c index 7a87860d7..3d4cd5360 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.477 2008/07/15 14:47:19 drh Exp $ +** $Id: main.c,v 1.478 2008/07/16 12:25:32 drh Exp $ */ #include "sqliteInt.h" #include <ctype.h> @@ -243,10 +243,10 @@ int sqlite3_config(int op, ...){ ** the default case and return an error. */ #ifdef SQLITE_ENABLE_MEMSYS3 - sqlite3Config.m = sqlite3MemGetMemsys3(); + sqlite3Config.m = *sqlite3MemGetMemsys3(); #endif #ifdef SQLITE_ENABLE_MEMSYS5 - sqlite3Config.m = sqlite3MemGetMemsys5(); + sqlite3Config.m = *sqlite3MemGetMemsys5(); #endif } break; |