1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-22 20:22:44 +03:00

Remove some obsolete code within #if 0 that was causing developer concern.

FossilOrigin-Name: 1d64e9453fb59d2bb1b5cb0cbacaf135b8f928c3
This commit is contained in:
drh
2009-10-26 22:08:21 +00:00
parent eb206381a8
commit 40f75cf389
4 changed files with 11 additions and 17 deletions

View File

@@ -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