mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-05 04:30:38 +03:00
More speed improvements. (CVS 1381)
FossilOrigin-Name: cf75cac9b6bd43e60c6e25042b194ec5c60e5671
This commit is contained in:
@@ -1290,7 +1290,7 @@ int sqlite3VdbeSerialGet(const unsigned char *buf, u64 serial_type, Mem *pMem){
|
||||
len = sqlite3VdbeSerialTypeLen(serial_type);
|
||||
pMem->n = len;
|
||||
if( len>NBFS ){
|
||||
pMem->z = sqliteMalloc( len );
|
||||
pMem->z = sqliteMallocRaw( len );
|
||||
if( !pMem->z ){
|
||||
return -1;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user