Skip to content

Commit e247ef8

Browse files
Fix s2n cleanup (#687)
1 parent 7b7437b commit e247ef8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/s2n/s2n_tls_channel_handler.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ void aws_tls_init_static_state(struct aws_allocator *alloc) {
255255
void aws_tls_clean_up_static_state(void) {
256256
/* only clean up s2n if we were the ones that initialized it */
257257
if (!s_s2n_initialized_externally) {
258-
s2n_cleanup();
258+
s2n_cleanup_final();
259259
}
260260
}
261261

0 commit comments

Comments
 (0)