damus

nostr ios client
git clone git://jb55.com/damus
Log | Files | Refs | README | LICENSE

commit 4bf9160502bca815317aac8fe42afc13fef50156
parent 02df1e209b97bb0e0fc92c76b46fe69f55444f92
Author: William Casarin <jb55@jb55.com>
Date:   Fri, 22 Nov 2024 23:27:14 -0800

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 <jb55@jb55.com>

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

diff --git 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); }