Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | In sqlarfs (the Fuse FS driver for SQLite archives) make sure it always runs in the foreground. And after it stops, clean up prepared statements and memory allocations and close the database connection before exiting. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
ed4e6af2e898dbec8b13ff732522d0e7 |
User & Date: | drh 2014-06-14 17:20:10.024 |
Context
2014-08-15
| ||
19:01 | Update the built-in SQLite to version 3.8.6. check-in: 95ee3b3708 user: drh tags: trunk | |
2014-06-14
| ||
17:20 | In sqlarfs (the Fuse FS driver for SQLite archives) make sure it always runs in the foreground. And after it stops, clean up prepared statements and memory allocations and close the database connection before exiting. check-in: ed4e6af2e8 user: drh tags: trunk | |
2014-06-13
| ||
18:32 | Add a short mention of the FuseFS adaptor to the documentation and homepage. check-in: aab6f9cff9 user: drh tags: trunk | |
Changes
Changes to sqlarfs.c.
︙ | |||
215 216 217 218 219 220 221 | 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 | + - - + + + + + + + - + + + + + + + + | .getattr = sqlarfs_getattr, .readdir = sqlarfs_readdir, .open = sqlarfs_open, .read = sqlarfs_read, }; int main(int argc, char **argv){ int rc; char *azNewArg[5]; |