]> code.citadel.org Git - citadel.git/commitdiff
Remediated an unrecoverable problem in CDB_USETABLE.
authorArt Cancro <ajc@citadel.org>
Sun, 4 Jun 2023 03:41:01 +0000 (18:41 -0900)
committerArt Cancro <ajc@citadel.org>
Sun, 4 Jun 2023 03:41:01 +0000 (18:41 -0900)
Due to a missing null terminator, records were being stored with
excessive lengths, resulting in records whose keys did not match.
Unfortunately this means we have to zero out the table during an upgrade
to Citadel Server 975.  No user data will be lost, but incoming data
such as RSS feeds and POP3 retrievals may produce some unwanted
duplicates.

The new implementation not only remediates this problem, but also works
using a hash of the item rather than the item itself.  This produces
records that are only 12 bytes long.


No differences found