Skip to content

Commit

Permalink
Fix s2n cleanup (#687)
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitriyMusatkin authored Oct 30, 2024
1 parent 7b7437b commit e247ef8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/s2n/s2n_tls_channel_handler.c
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ void aws_tls_init_static_state(struct aws_allocator *alloc) {
void aws_tls_clean_up_static_state(void) {
/* only clean up s2n if we were the ones that initialized it */
if (!s_s2n_initialized_externally) {
s2n_cleanup();
s2n_cleanup_final();
}
}

Expand Down

0 comments on commit e247ef8

Please sign in to comment.