mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-08 14:02:16 +03:00
Modify btree.c so that is allocates big data structures using malloc()
instead of allocating from the stack. Stack allocations cause problems for embedded systems and pthreads implementations that only allocate a limited amount of stack space. (CVS 1937) FossilOrigin-Name: 4595292f936bdbec10734f42682824e91ff71d11
This commit is contained in:
@@ -10,7 +10,7 @@
|
||||
#***********************************************************************
|
||||
# This file runs all tests.
|
||||
#
|
||||
# $Id: memleak.test,v 1.6 2004/08/01 03:52:18 drh Exp $
|
||||
# $Id: memleak.test,v 1.7 2004/09/03 18:38:46 drh Exp $
|
||||
|
||||
set testdir [file dirname $argv0]
|
||||
source $testdir/tester.tcl
|
||||
@@ -41,6 +41,7 @@ set EXCLUDE {
|
||||
btree2.test
|
||||
trans.test
|
||||
crash.test
|
||||
corrupt.test
|
||||
}
|
||||
if {[sqlite3 -has-codec]} {
|
||||
# lappend EXCLUDE
|
||||
|
Reference in New Issue
Block a user