[issue24618] Invalid read in PyCode_New

2018-07-17 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.6, Python 3.7, Python 3.8 -Python 3.4 ___ Python tracker __

[issue24618] Invalid read in PyCode_New

2018-07-17 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset cf30d5c5b88276a9af863438839ba386b9723a14 by Serhiy Storchaka in branch '3.6': bpo-24618: Add a check in the code constructor. (GH-8283) (GH-8311) https://github.com/python/cpython/commit/cf30d5c5b88276a9af863438839ba386b9723a14 -- _

[issue24618] Invalid read in PyCode_New

2018-07-16 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +7846 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue24618] Invalid read in PyCode_New

2018-07-16 Thread miss-islington
miss-islington added the comment: New changeset 5594f1dfbe214151b75405be042e9420a3649241 by Miss Islington (bot) in branch '3.7': bpo-24618: Add a check in the code constructor. (GH-8283) https://github.com/python/cpython/commit/5594f1dfbe214151b75405be042e9420a3649241 -- nosy: +mis

[issue24618] Invalid read in PyCode_New

2018-07-15 Thread miss-islington
Change by miss-islington : -- pull_requests: +7825 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue24618] Invalid read in PyCode_New

2018-07-15 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset bd47384e07bde38a8f18b90b4cea02a505d95c75 by Serhiy Storchaka in branch 'master': bpo-24618: Add a check in the code constructor. (GH-8283) https://github.com/python/cpython/commit/bd47384e07bde38a8f18b90b4cea02a505d95c75 --

[issue24618] Invalid read in PyCode_New

2018-07-14 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +7817 stage: -> patch review ___ Python tracker ___ ___ Python-bugs

[issue24618] Invalid read in PyCode_New

2015-07-12 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue24618] Invalid read in PyCode_New

2015-07-12 Thread Brad Larsen
New submission from Brad Larsen: `PyCode_New` can read invalid heap memory. File Objects/codeobject.c: PyCodeObject * PyCode_New(int argcount, int kwonlyargcount, int nlocals, int stacksize, int flags, PyObject *code, PyObject *consts, PyObject *names,