mirror of
https://github.com/nmap/nmap.git
synced 2026-08-27 11:55:27 +00:00
Avoid shutting down SSL descriptor twice. Fixes #1365
This commit is contained in:
parent
8cb2b0ea2a
commit
e3d08f7e94
1 changed files with 2 additions and 0 deletions
|
|
@ -572,6 +572,8 @@ loop_end:
|
|||
if (o.ssl && info->fdn.ssl) {
|
||||
SSL_shutdown(info->fdn.ssl);
|
||||
SSL_free(info->fdn.ssl);
|
||||
/* avoid shutting down and freeing this again in subprocess_info_close */
|
||||
info->fdn.ssl = NULL;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue