[issue29340] SSL destructor segfaults in python3.6 threads when an unverified-cert connection is closed

Christian Heimes report at bugs.python.org
Sat Jan 21 19:09:23 EST 2017


Christian Heimes added the comment:

SSL_CTX_free:

    if (a->rbuf_freelist)
        ssl_buf_freelist_free(a->rbuf_freelist);

(gdb) p list
$1 = (SSL3_BUF_FREELIST *) 0x7fffe8003b50
(gdb) p *list
$2 = {chunklen = 33096, len = 1, head = 0x7fffe8031c00}
(gdb) p *list->head
$3 = {next = 0x5000030317000000}
(gdb) p *list->head->next
Cannot access memory at address 0x5000030317000000

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue29340>
_______________________________________


More information about the Python-bugs-list mailing list