From 3d471ea97a1bd904b2b7ceae936e9f40f2bb7a80 Mon Sep 17 00:00:00 2001 From: William Casarin Date: Fri, 22 Nov 2024 23:27:14 -0800 Subject: [PATCH] fix heap corruption on windows windows thinks this is heap corruption... so I guess we have to trust it. --- src/nostrdb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nostrdb.c b/src/nostrdb.c index bc4502d..16102cf 100644 --- a/src/nostrdb.c +++ b/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); }