[issue15793] Stack corruption in ssl.RAND_egd()

2012-09-10 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: Thanks for the detection and patch. I added a test to 2.7, even knowing it doesn't need it (2.7 is a dead end), for consistence. -- ___ Python tracker ___

[issue15793] Stack corruption in ssl.RAND_egd()

2012-09-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 706115cb2cdb by Jesus Cea in branch '2.7': Closes #15793: Stack corruption in ssl.RAND_egd(). Python 2.7 hasn't any issue about this, but add a test just to be sure http://hg.python.org/cpython/rev/706115cb2cdb New changeset 827bb0554f1f by Jesus C

[issue15793] Stack corruption in ssl.RAND_egd()

2012-08-27 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- nosy: +jcea ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue15793] Stack corruption in ssl.RAND_egd()

2012-08-27 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : Removed file: http://bugs.python.org/file27020/ssl_RAND_egd.patch ___ Python tracker ___ ___ Python-bugs-list ma

[issue15793] Stack corruption in ssl.RAND_egd()

2012-08-27 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : Added file: http://bugs.python.org/file27024/ssl_RAND_egd-3.2.patch ___ Python tracker ___ ___ Python-bugs-list

[issue15793] Stack corruption in ssl.RAND_egd()

2012-08-27 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Patch updated with tests. -- Added file: http://bugs.python.org/file27023/ssl_RAND_egd-3.3.patch ___ Python tracker ___ __

[issue15793] Stack corruption in ssl.RAND_egd()

2012-08-27 Thread Antoine Pitrou
Antoine Pitrou added the comment: You should add a test (e.g. that TypeError is raised when a second argument is passed). -- nosy: +pitrou ___ Python tracker ___ ___

[issue15793] Stack corruption in ssl.RAND_egd()

2012-08-27 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Here is a patch that fixes stack corruption in ssl.RAND_egd(). -- components: Library (Lib) files: ssl_RAND_egd.patch keywords: patch messages: 169221 nosy: haypo, storchaka priority: normal severity: normal status: open title: Stack corruption in ss