SQLite

Check-in [16254ad5aa]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Make sure mem3.c releases its mutex on an sqlite3_shutdown() call.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 16254ad5aad355acedf72e0a1c618438041d5889
User & Date: drh 2009-10-13 12:48:44.000
Context
2009-10-13
13:08
Suppress some harmless compiler warnings. (check-in: 5d381daa6e user: drh tags: trunk)
12:48
Make sure mem3.c releases its mutex on an sqlite3_shutdown() call. (check-in: 16254ad5aa user: drh tags: trunk)
10:39
Add further test cases to e_fkey.test. (check-in: c85e58743a user: dan tags: trunk)
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/mem3.c.
574
575
576
577
578
579
580

581
582
583
584
585
586
587
}

/*
** Deinitialize this module.
*/
static void memsys3Shutdown(void *NotUsed){
  UNUSED_PARAMETER(NotUsed);

  return;
}



/*
** Open the file indicated and write a log of all unfreed memory 







>







574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
}

/*
** Deinitialize this module.
*/
static void memsys3Shutdown(void *NotUsed){
  UNUSED_PARAMETER(NotUsed);
  mem3.mutex = 0;
  return;
}



/*
** Open the file indicated and write a log of all unfreed memory