Skip to content

Commit

Permalink
fix heap corruption on windows
Browse files Browse the repository at this point in the history
windows thinks this is heap corruption... so I
guess we have to trust it.
  • Loading branch information
jb55 committed Nov 23, 2024
1 parent 88c5d19 commit 3d471ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nostrdb.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 3d471ea

Please sign in to comment.