1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-07 02:42:48 +03:00

Bug fixes: Plug a memory leak introduced by the previous check-in. Get

the amalgamation to the point where it will compile. (CVS 5241)

FossilOrigin-Name: 005f8eaef5ae05cef5c76f3afe299eaa2cf8af2f
This commit is contained in:
drh
2008-06-19 01:03:17 +00:00
parent f714199054
commit 65bbf29ee3
8 changed files with 36 additions and 24 deletions

View File

@@ -19,7 +19,7 @@
** Source files should #include the sqliteInt.h file and let that file
** include this one indirectly.
**
** $Id: mutex.h,v 1.5 2008/06/18 18:57:42 danielk1977 Exp $
** $Id: mutex.h,v 1.6 2008/06/19 01:03:18 drh Exp $
*/
@@ -77,6 +77,7 @@
#define sqlite3_mutex_leave(X)
#define sqlite3_mutex_held(X) 1
#define sqlite3_mutex_notheld(X) 1
#define sqlite3MutexAlloc(X) 0
#define sqlite3MutexInit() SQLITE_OK
#define sqlite3MutexEnd()
#endif