[issue24105] Use after free during json encoding a dict (3)

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/issue24105 ___

[issue24105] Use after free during json encoding a dict (3)

2015-05-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here is a disadvantage of opening several issues for similar bugs. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24105 ___

[issue24105] Use after free during json encoding a dict (3)

2015-05-03 Thread Benjamin Peterson
Benjamin Peterson added the comment: I applied a very similar patch for #24094. -- nosy: +benjamin.peterson resolution: - duplicate status: open - closed superseder: - Use after free during json encoding (PyType_IsSubtype) ___ Python tracker

[issue24105] Use after free during json encoding a dict (3)

2015-05-02 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Proposed patch fixes three related issues: issue24094, issue24095 and issue24105. -- assignee: - serhiy.storchaka keywords: +patch stage: - patch review versions: +Python 3.5 Added file:

[issue24105] Use after free during json encoding a dict (3)

2015-05-02 Thread paul
paul added the comment: @Serhiy: Not all of my bugs are in the same module. Sure, I will group them by module in the future. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24105 ___

[issue24105] Use after free during json encoding a dict (3)

2015-05-01 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- components: +Extension Modules nosy: +ezio.melotti, pitrou, rhettinger, serhiy.storchaka ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24105

[issue24105] Use after free during json encoding a dict (3)

2015-05-01 Thread Raymond Hettinger
Raymond Hettinger added the comment: Please don't file a multiple tracker items for the same module. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24105 ___

[issue24105] Use after free during json encoding a dict (3)

2015-05-01 Thread paul
New submission from paul: # Program received signal SIGSEGV, Segmentation fault. # 0x40036740 in encoder_listencode_dict (s=0x405b43fc, acc=0xbf86438c, dct=D at remote 0x405b2fb4, indent_level=0) # at /home/p/Python-3.4.1/Modules/_json.c:1557 # 1557PyList_SET_ITEM(items, i,

[issue24105] Use after free during json encoding a dict (3)

2015-05-01 Thread paul
paul added the comment: You want multiple bugs in the same module grouped in one issue? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24105 ___

[issue24105] Use after free during json encoding a dict (3)

2015-05-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Yes, if they are related. I didn't look at the code close, but at first glance all your recently opened issues look related (may be I wrong). -- ___ Python tracker rep...@bugs.python.org