aboutsummaryrefslogtreecommitdiff
path: root/src/malloc.c
diff options
context:
space:
mode:
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