git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7092 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale 2008-01-05 14:43:50 +00:00
parent 46cfce18e8
commit cd3c6a30c9
2 changed files with 2 additions and 9 deletions

View File

@ -1 +1 @@
Fri Jan 4 10:43:39 CST 2008
Sat Jan 5 09:43:41 EST 2008

View File

@ -296,15 +296,8 @@ static inline void *zmalloc(size_t x)
#endif
static inline void sane_free(void *x)
{
if (x) {
free(x);
x = NULL;
}
}
#define sqliteFree(x) sane_free(x) //sqlite3FreeX(x)
#define sqliteFree(x) do { free(x); x = NULL; } while(x) //sqlite3FreeX(x)
#define sqliteAllocSize(x) sqlite3AllocSize(x)