1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-30 19:03:16 +03:00

Fix a couple of memory leaks in r-tree that can occur following an OOM condition.

FossilOrigin-Name: 1975a27cdec09e1dad4ca8281a87dd7754c02c3e
This commit is contained in:
dan
2010-08-26 14:15:37 +00:00
parent c23454023e
commit 897230eb7a
14 changed files with 89 additions and 82 deletions

View File

@ -1,3 +1,4 @@
# 2008 June 23
#
# May you do good and not evil.
# May you find forgiveness for yourself and forgive others.
@ -6,35 +7,12 @@
#***********************************************************************
# This file runs all rtree related tests.
#
# $Id: rtree.test,v 1.3 2009/05/25 14:17:35 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
source $testdir/permutations.test
rename finish_test rtree_finish_test
proc finish_test {} {}
set RTREE_EXCLUDE { }
if {[info exists G(isquick)] && $G(isquick)} {
set RTREE_EXCLUDE rtree3.test
}
set G(isquick) 1
set rtreedir [file join $testdir .. ext rtree]
foreach testfile [lsort -dictionary [glob -nocomplain $rtreedir/*.test]] {
set tail [file tail $testfile]
if {[lsearch -exact $RTREE_EXCLUDE $tail]>=0} continue
source $testfile
catch {db close}
if {$sqlite_open_file_count>0} {
puts "$tail did not close all files: $sqlite_open_file_count"
fail_test $tail
set sqlite_open_file_count 0
}
ifcapable rtree {
run_test_suite rtree
}
set sqlite_open_file_count 0
rtree_finish_test
rename finish_test {}
rename rtree_finish_test finish_test
finish_test