From 66e10db6b22d0ea8f0c2aac62e3e5094776f14be Mon Sep 17 00:00:00 2001 From: William Casarin Date: Fri, 11 Jul 2025 12:34:14 -0700 Subject: [PATCH] nostrdb: mem: re-enable profile freeing Signed-off-by: William Casarin --- nostrdb/src/nostrdb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nostrdb/src/nostrdb.c b/nostrdb/src/nostrdb.c index c9e00277..1a130c7a 100644 --- a/nostrdb/src/nostrdb.c +++ b/nostrdb/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) {