Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Replace always-true condition with assertion (CVS 4970) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
be7f3240c21c01509263005af2ccc3d7 |
User & Date: | mlcreech 2008-04-08 03:09:22.000 |
Context
2008-04-10
| ||
13:20 | Fix a bug in the speed4p.test performance testing script. (CVS 4971) (check-in: 8031159414 user: drh tags: trunk) | |
2008-04-08
| ||
03:09 | Replace always-true condition with assertion (CVS 4970) (check-in: be7f3240c2 user: mlcreech tags: trunk) | |
03:07 | Add test case for empty VFS list (CVS 4969) (check-in: 6797814ec5 user: mlcreech tags: trunk) | |
Changes
Changes to src/os.c.
︙ | ︙ | |||
176 177 178 179 180 181 182 | *ppFile = pFile; } } return rc; } int sqlite3OsCloseFree(sqlite3_file *pFile){ int rc = SQLITE_OK; | | | | < | 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 | *ppFile = pFile; } } return rc; } int sqlite3OsCloseFree(sqlite3_file *pFile){ int rc = SQLITE_OK; assert( pFile ); rc = sqlite3OsClose(pFile); sqlite3_free(pFile); return rc; } /* ** The list of all registered VFS implementations. This list is ** initialized to the single VFS returned by sqlite3OsDefaultVfs() ** upon the first call to sqlite3_vfs_find(). |
︙ | ︙ |