nostrdb

an unfairly fast embedded nostr database backed by lmdb
git clone git://jb55.com/nostrdb
Log | Files | Refs | Submodules | README | LICENSE

commit 50c1a4c88e68a89de03001ea5a7f53dcdb4c1704
parent ff36823c2bb635353886faf7842d88414158dd00
Author: William Casarin <jb55@jb55.com>
Date:   Fri, 11 Jul 2025 12:34:14 -0700

mem: re-enable profile freeing

Signed-off-by: William Casarin <jb55@jb55.com>

Diffstat:
Msrc/nostrdb.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/nostrdb.c b/src/nostrdb.c @@ -5624,7 +5624,7 @@ static void *ndb_writer_thread(void *data) free((void*)msg->note.relay); } else if (msg->type == NDB_WRITER_PROFILE) { free(msg->profile.note.note); - //ndb_profile_record_builder_free(&msg->profile.record); + ndb_profile_record_builder_free(&msg->profile.record); } else if (msg->type == NDB_WRITER_BLOCKS) { ndb_blocks_free(msg->blocks.blocks); } else if (msg->type == NDB_WRITER_NOTE_RELAY) {