aboutsummaryrefslogtreecommitdiff
path: root/src/malloc.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2009-10-26 22:08:21 +0000
committerdrh <drh@noemail.net>2009-10-26 22:08:21 +0000
commit40f75cf3896e85c2a3936ff8c5d5ef90e05b5489 (patch)
treeebf7528dd53687f15b905a665a66703005301088 /src/malloc.c
parenteb206381a8c6e038d62b379b08b9302bdafe6ca9 (diff)
downloadsqlite-40f75cf3896e85c2a3936ff8c5d5ef90e05b5489.tar.gz
sqlite-40f75cf3896e85c2a3936ff8c5d5ef90e05b5489.zip
Remove some obsolete code within #if 0 that was causing developer concern.
FossilOrigin-Name: 1d64e9453fb59d2bb1b5cb0cbacaf135b8f928c3
Diffstat (limited to 'src/malloc.c')
-rw-r--r--src/malloc.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/malloc.c b/src/malloc.c
index 6678d5659..c0c695dfb 100644
--- a/src/malloc.c
+++ b/src/malloc.c
@@ -65,9 +65,6 @@ void sqlite3_soft_heap_limit(int n){
int sqlite3_release_memory(int n){
#ifdef SQLITE_ENABLE_MEMORY_MANAGEMENT
int nRet = 0;
-#if 0
- nRet += sqlite3VdbeReleaseMemory(n);
-#endif
nRet += sqlite3PcacheReleaseMemory(n-nRet);
return nRet;
#else