aboutsummaryrefslogtreecommitdiff
path: root/src/mutex_os2.c
diff options
context:
space:
mode:
authordanielk1977 <danielk1977@noemail.net>2008-03-26 18:34:43 +0000
committerdanielk1977 <danielk1977@noemail.net>2008-03-26 18:34:43 +0000
commitdfb316d43242a61212feec6c1293b4519f348a79 (patch)
treeeef6a718c5ecdc19aa03a165b8bdbc4c4ed96297 /src/mutex_os2.c
parent7e2e6dc9505b9dec7fd809020ede9db4bfd9a694 (diff)
downloadsqlite-dfb316d43242a61212feec6c1293b4519f348a79.tar.gz
sqlite-dfb316d43242a61212feec6c1293b4519f348a79.zip
Changes to delay freeing buffers associated with vdbe memory cells until either sqlite3_finalize() or sqlite3_release_memory() is called. (CVS 4922)
FossilOrigin-Name: 8c2f69521f13bc24cf005520efbe0589eeadd763
Diffstat (limited to 'src/mutex_os2.c')
-rw-r--r--src/mutex_os2.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mutex_os2.c b/src/mutex_os2.c
index cbffeeebc..ed5477a54 100644
--- a/src/mutex_os2.c
+++ b/src/mutex_os2.c
@@ -11,7 +11,7 @@
*************************************************************************
** This file contains the C functions that implement mutexes for OS/2
**
-** $Id: mutex_os2.c,v 1.5 2008/02/01 19:42:38 pweilbacher Exp $
+** $Id: mutex_os2.c,v 1.6 2008/03/26 18:34:43 danielk1977 Exp $
*/
#include "sqliteInt.h"
@@ -101,6 +101,7 @@ sqlite3_mutex *sqlite3_mutex_alloc(int iType){
{ OS2_MUTEX_INITIALIZER, },
{ OS2_MUTEX_INITIALIZER, },
{ OS2_MUTEX_INITIALIZER, },
+ { OS2_MUTEX_INITIALIZER, },
};
if ( !isInit ){
APIRET rc;