Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 317331 Details for
Bug 459607
SSL connections are not correctly shutdown
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
Shutdown SSL connection properly
vsftpd-2.0.7-ssl_shutdown.patch (text/plain), 552 bytes, created by
Martin Nagy
on 2008-09-21 23:11:47 UTC
(
hide
)
Description:
Shutdown SSL connection properly
Filename:
MIME Type:
Creator:
Martin Nagy
Created:
2008-09-21 23:11:47 UTC
Size:
552 bytes
patch
obsolete
>diff -up vsftpd-2.0.5/ssl.c.ssl_shutdown vsftpd-2.0.5/ssl.c >--- vsftpd-2.0.5/ssl.c.ssl_shutdown 2006-06-14 23:02:55.000000000 +0200 >+++ vsftpd-2.0.5/ssl.c 2008-09-22 00:54:49.000000000 +0200 >@@ -266,7 +266,17 @@ ssl_accept(struct vsf_session* p_sess, i > void > ssl_data_close(struct vsf_session* p_sess) > { >- SSL_free(p_sess->p_data_ssl); >+ SSL* p_ssl = p_sess->p_data_ssl; >+ if (p_ssl) >+ { >+ int ret; >+ ret = SSL_shutdown(p_ssl); >+ if (ret == 0) >+ { >+ SSL_shutdown(p_ssl); >+ } >+ SSL_free(p_sess->p_data_ssl); >+ } > } > > void
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 459607
:
314952
|
316749
| 317331 |
333868