diff options
Diffstat (limited to 'third_party/sqlite/src/os_unix.c')
-rw-r--r-- | third_party/sqlite/src/os_unix.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/third_party/sqlite/src/os_unix.c b/third_party/sqlite/src/os_unix.c index 4874a64..7530ff0 100644 --- a/third_party/sqlite/src/os_unix.c +++ b/third_party/sqlite/src/os_unix.c @@ -2081,6 +2081,13 @@ static int unixDeviceCharacteristics(sqlite3_file *id){ } /* +** Initializes a unixFile structure with zeros. +*/ +void initUnixFile(sqlite3_file* file) { + memset(file, 0, sizeof(unixFile)); +} + +/* ** Initialize the contents of the unixFile structure pointed to by pId. ** ** When locking extensions are enabled, the filepath and locking style @@ -2088,7 +2095,7 @@ static int unixDeviceCharacteristics(sqlite3_file *id){ ** The locking-style specific lockingContext data structure is created ** and assigned here also. */ -static int fillInUnixFile( +int fillInUnixFile( sqlite3_vfs *pVfs, /* Pointer to vfs object */ int h, /* Open file descriptor of file being opened */ int dirfd, /* Directory file descriptor */ |