Index: src/vdbemem.c ================================================================== --- src/vdbemem.c +++ src/vdbemem.c @@ -13,11 +13,11 @@ ** This file contains code use to manipulate "Mem" structure. A "Mem" ** stores a single value in the VDBE. Mem is an opaque structure visible ** only within the VDBE. Interface routines refer to a Mem using the ** name sqlite_value ** -** $Id: vdbemem.c,v 1.128 2008/12/04 22:17:56 drh Exp $ +** $Id: vdbemem.c,v 1.129 2008/12/05 23:40:23 drh Exp $ */ #include "sqliteInt.h" #include #include "vdbeInt.h" @@ -506,11 +506,11 @@ assert( db!=0 ); if( pMem->flags & MEM_RowSet ){ sqlite3RowSetClear(pMem->u.pRowSet); }else{ sqlite3VdbeMemRelease(pMem); - pMem->zMalloc = sqlite3DbMallocRaw(db, 32); + pMem->zMalloc = sqlite3DbMallocRaw(db, 64); } if( db->mallocFailed ){ pMem->flags = MEM_Null; }else{ assert( pMem->zMalloc );