[issue24097] Use after free in PyObject_GetState

2015-11-25 Thread Roundup Robot
Roundup Robot added the comment: New changeset eed36e19f8b8 by Serhiy Storchaka in branch '3.4': Issue #24097: Fixed crash in object.__reduce__() if slot name is freed inside https://hg.python.org/cpython/rev/eed36e19f8b8 New changeset 99839a1c9c6d by Serhiy Storchaka in branch '3.5': Issue

[issue24097] Use after free in PyObject_GetState

2015-11-25 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue24097] Use after free in PyObject_GetState

2015-11-03 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: pitrou -> serhiy.storchaka ___ Python tracker ___

[issue24097] Use after free in PyObject_GetState

2015-11-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: In 2.7 the test doesn't crash, but __reduce__ produces invalid recursive structure. -- versions: +Python 2.7 ___ Python tracker

[issue24097] Use after free in PyObject_GetState

2015-11-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here is backported to 2.7 patch with test. Can you review the test and commit the patch Antoine? -- assignee: serhiy.storchaka -> pitrou Added file: http://bugs.python.org/file40936/getstate_borrowed_ref_with_test-2.7.patch

[issue24097] Use after free in PyObject_GetState

2015-11-03 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : Added file: http://bugs.python.org/file40937/getstate_borrowed_ref_with_test-3.4.patch ___ Python tracker ___

[issue24097] Use after free in PyObject_GetState

2015-07-19 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here is a test for this issue. -- stage: test needed - patch review Added file: http://bugs.python.org/file39953/test_issue24097.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24097

[issue24097] Use after free in PyObject_GetState

2015-07-02 Thread paul
paul added the comment: ping -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24097 ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue24097] Use after free in PyObject_GetState

2015-07-02 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- keywords: +patch Added file: http://bugs.python.org/file39842/getstate_borrowed_ref.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24097 ___

[issue24097] Use after free in PyObject_GetState

2015-07-02 Thread Antoine Pitrou
Antoine Pitrou added the comment: Thanks for the report. Here is a patch. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24097 ___ ___

[issue24097] Use after free in PyObject_GetState

2015-07-02 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- stage: needs patch - patch review versions: +Python 3.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24097 ___

[issue24097] Use after free in PyObject_GetState

2015-07-02 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- assignee: - serhiy.storchaka ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24097 ___ ___

[issue24097] Use after free in PyObject_GetState

2015-07-02 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: The fix LGTM. It would be nice to add a test. -- assignee: serhiy.storchaka - pitrou stage: patch review - test needed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24097

[issue24097] Use after free in PyObject_GetState

2015-07-02 Thread Benjamin Peterson
Benjamin Peterson added the comment: lgtm -- nosy: +benjamin.peterson ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24097 ___ ___ Python-bugs-list

[issue24097] Use after free in PyObject_GetState

2015-05-03 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis arfrever@gmail.com: -- nosy: +Arfrever ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24097 ___

[issue24097] Use after free in PyObject_GetState

2015-05-01 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- nosy: +alexandre.vassalotti, pitrou, serhiy.storchaka ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24097 ___

[issue24097] Use after free in PyObject_GetState

2015-05-01 Thread Christian Heimes
Changes by Christian Heimes li...@cheimes.de: -- components: +Extension Modules stage: - needs patch versions: +Python 3.5 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24097 ___

[issue24097] Use after free in PyObject_GetState

2015-05-01 Thread paul
New submission from paul: # Program received signal SIGSEGV, Segmentation fault. # 0x080f27b2 in PyObject_Hash (v=unknown at remote 0x405720e4) at Objects/object.c:746 # 746 if (tp-tp_hash != NULL) # (gdb) bt # #0 0x080f27b2 in PyObject_Hash (v=unknown at remote 0x405720e4) at