Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix a harmless compiler warning in SQLite. This is a direct edit to the imported sqlite3.c file, which will be overwritten the next time we update SQLite. But that's ok since the warning is fixed in the SQLite tree too. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
ead5a95b47bf5d0ca624f98f5d0d1028 |
User & Date: | drh 2023-09-19 10:42:00 |
Context
2023-09-19
| ||
11:19 | Updates to the change log. ... (check-in: 5afa42e4 user: drh tags: trunk) | |
10:42 | Fix a harmless compiler warning in SQLite. This is a direct edit to the imported sqlite3.c file, which will be overwritten the next time we update SQLite. But that's ok since the warning is fixed in the SQLite tree too. ... (check-in: ead5a95b user: drh tags: trunk) | |
2023-09-18
| ||
22:27 | Whitespace fix in previous ... (check-in: f8bec8f7 user: wyoung tags: trunk) | |
Changes
Changes to extsrc/sqlite3.c.
︙ | ︙ | |||
239685 239686 239687 239688 239689 239690 239691 | int iOff = 0; int nIdx = 0; u8 *aIdx = 0; int bLastInDoclist = 0; int iIdx = 0; int iStart = 0; int iKeyOff = 0; | < | 239685 239686 239687 239688 239689 239690 239691 239692 239693 239694 239695 239696 239697 239698 | int iOff = 0; int nIdx = 0; u8 *aIdx = 0; int bLastInDoclist = 0; int iIdx = 0; int iStart = 0; int iKeyOff = 0; int iDelKeyOff = 0; /* Offset of deleted key, if any */ nIdx = nPg-iPgIdx; aIdx = sqlite3Fts5MallocZero(&p->rc, nIdx+16); if( p->rc ) return; memcpy(aIdx, &aPg[iPgIdx], nIdx); |
︙ | ︙ |