ImageImage

This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: ssl socket seg fault in Python2.3b2
Type: Stage:
Components: Extension Modules Versions: Python 2.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: nnorwitz Nosy List: mattsurf76, nnorwitz
Priority: normal Keywords:

Created on 2003-07-09 08:29 by mattsurf76, last changed 2022-04-10 16:09 by admin. This issue is now closed.

Messages (2)
msg16977 - (view) Author: Matthew Russell (mattsurf76) Date: 2003-07-09 08:29
Hi,

not sure this is a critical error:-

if an unconnected socket is passed to socket.ssl this
causes a segmenation fault on RedHat 8.

from socket import *
s=socket()
#s.connect((url, 443))
s2=ssl(s, None, None)
(exits to cmd line with seg fault message)

Obvioiusly one would never want to do this!


Matt
msg16978 - (view) Author: Neal Norwitz (nnorwitz) * (Python committer) Date: 2003-07-09 12:49
Logged In: YES 
user_id=33168

This should be fixed in version 1.13 of Modules/_ssl.c. 
Please test from CVS to verify.

Should also be duplicate of #754870.
History
Date User Action Args
2022-04-10 16:09:53adminsetgithub: 38823
2003-07-09 08:29:47mattsurf76create