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

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

index e4e62f51ead2091da13164da93cb33456605eee3..1be88db2ad6ce0e7d8c540199dca6922d7c1de43 100644 (file)
@@ -1 +1 @@
-Sat Jan  5 09:09:25 CST 2008
+Sat Jan  5 12:23:10 EST 2008
index 44fa482ba5938bf080f430e659f7aa398c9141e9..467005a86e95664d8dc56dddb5c488493190afd6 100644 (file)
@@ -297,7 +297,7 @@ static inline void *zmalloc(size_t x)
 #endif
 
 
-#define sqliteFree(x)          do { free((void *)x); x = NULL; } while(x) //sqlite3FreeX(x)
+#define sqliteFree(x)          if (x) { free((void *)x); x = NULL; } //sqlite3FreeX(x)
 #define sqliteAllocSize(x)     sqlite3AllocSize(x)