Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix os_common.h so that the code builds without -DSQLITE_MEMDEBUG. (CVS 3000) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
06d6540026568ca69410354ca8d85da7 |
User & Date: | drh 2006-01-23 14:05:18.000 |
Context
2006-01-23
| ||
15:25 | Further coverage improvements for pager.c and another IO error bug fix. (CVS 3001) (check-in: a9ec5ee472 user: danielk1977 tags: trunk) | |
14:05 | Fix os_common.h so that the code builds without -DSQLITE_MEMDEBUG. (CVS 3000) (check-in: 06d6540026 user: drh tags: trunk) | |
13:47 | Do not automatically rollback at the btree or pager level if a commit fails. (CVS 2999) (check-in: 0f6329ef1f user: danielk1977 tags: trunk) | |
Changes
Changes to src/os_common.h.
︙ | ︙ | |||
179 180 181 182 183 184 185 | p = realloc(p, n); return p; } void sqlite3GenericFree(void *p){ assert(p); free(p); } | | | < < < | 179 180 181 182 183 184 185 186 187 188 | p = realloc(p, n); return p; } void sqlite3GenericFree(void *p){ assert(p); free(p); } /* Never actually used, but needed for the linker */ int sqlite3GenericAllocationSize(void *p){ return 0; } #endif |