]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
update
authorAnthony Minessale <anthony.minessale@gmail.com>
Sat, 5 Jan 2008 14:43:50 +0000 (14:43 +0000)
committerAnthony Minessale <anthony.minessale@gmail.com>
Sat, 5 Jan 2008 14:43:50 +0000 (14:43 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7092 d0543943-73ff-0310-b7d9-9358b9ac24b2

libs/sqlite/.update
libs/sqlite/src/sqliteInt.h

index 55bdca0f6cf6e4c3cb9d2c08568e7746ea78fd17..3c991b571649993558f417379f9f0f6e04500ec2 100644 (file)
@@ -1 +1 @@
-Fri Jan  4 10:43:39 CST 2008
+Sat Jan  5 09:43:41 EST 2008
index cd5c23939b596a662c7d3bff618f618c8635f0b2..ce7d65c44ca25fdefbcfbbbf58307d4a02df313f 100644 (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)