update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7092 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
46cfce18e8
commit
cd3c6a30c9
|
@ -1 +1 @@
|
|||
Fri Jan 4 10:43:39 CST 2008
|
||||
Sat Jan 5 09:43:41 EST 2008
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue