1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-20 05:09:02 +00:00

Fix a typo in a previous fix

This commit is contained in:
dmiller
2018-08-21 19:12:36 +00:00
parent d8bcee17bd
commit 7629f3b997

View File

@@ -569,9 +569,9 @@ static DWORD WINAPI subprocess_thread_func(void *data)
loop_end:
#ifdef HAVE_OPENSSL
if (o.ssl && fdn->ssl) {
SSL_shutdown(fdn->ssl);
SSL_free(fdn->ssl);
if (o.ssl && info->fdn.ssl) {
SSL_shutdown(info->fdn.ssl);
SSL_free(info->fdn.ssl);
}
#endif