mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-14 00:22:38 +03:00
Fine tune the hard-coded values passed to sqlite3_init_wsd(). (CVS 5664)
FossilOrigin-Name: af5763eb65baa791a38f7e235624e4f63beac104
This commit is contained in:
@@ -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.497 2008/09/02 14:07:24 danielk1977 Exp $
|
||||
** $Id: main.c,v 1.498 2008/09/02 16:22:29 danielk1977 Exp $
|
||||
*/
|
||||
#include "sqliteInt.h"
|
||||
#include <ctype.h>
|
||||
@@ -89,7 +89,7 @@ int sqlite3_initialize(void){
|
||||
int rc; /* Result code */
|
||||
|
||||
#ifdef SQLITE_OMIT_WSD
|
||||
rc = sqlite3_wsd_init(1024, 256);
|
||||
rc = sqlite3_wsd_init(4096, 24);
|
||||
if( rc!=SQLITE_OK ){
|
||||
return rc;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user