From 4bf9160502bca815317aac8fe42afc13fef50156 Mon Sep 17 00:00:00 2001 From: William Casarin Date: Fri, 22 Nov 2024 23:27:14 -0800 Subject: [PATCH] nostrdb: fix heap corruption on windows windows thinks this is heap corruption... so I guess we have to trust it. 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 bc4502d3..16102cf9 100644 --- a/nostrdb/src/nostrdb.c +++ b/nostrdb/src/nostrdb.c @@ -4101,7 +4101,7 @@ static void *ndb_writer_thread(void *data) free(msg->note.note); } 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); }