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

Cure some TCL test failures and narrow an object scope.

FossilOrigin-Name: 1155696c700862de1a8b1318bc41cd5cd01dec1af2c7720d8ef1e5c3321c425d
This commit is contained in:
larrybr
2021-05-19 02:33:42 +00:00
parent 93ffb50fcd
commit 99bd552503
7 changed files with 86 additions and 81 deletions

View File

@@ -89,12 +89,12 @@ struct MemFile {
};
/*
** Global variables for holding the memdb files that are accessible
** File-scope variables for holding the memdb files that are accessible
** to multiple database connections in separate threads.
**
** Must hold SQLITE_MUTEX_STATIC_VFS1 to access any part of this object.
*/
struct MemFS {
static struct MemFS {
int nMemStore; /* Number of shared MemStore objects */
MemStore **apMemStore; /* Array of all shared MemStore objects */
} memdb_g;