[issue34735] Modules/timemodule.c: Memory leak in time_strftime()

2018-09-21 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue34735] Modules/timemodule.c: Memory leak in time_strftime()

2018-09-21 Thread miss-islington
miss-islington added the comment: New changeset 975f3cb1f25406a9be019906227d53b23852f415 by Miss Islington (bot) in branch '3.7': bpo-34735: Fix a memory leak in Modules/timemodule.c (GH-9418) https://github.com/python/cpython/commit/975f3cb1f25406a9be019906227d53b23852f415 --

[issue34735] Modules/timemodule.c: Memory leak in time_strftime()

2018-09-21 Thread miss-islington
miss-islington added the comment: New changeset f37496e893d743dbd01c802c8e8cdc16498a1604 by Miss Islington (bot) in branch '3.6': bpo-34735: Fix a memory leak in Modules/timemodule.c (GH-9418) https://github.com/python/cpython/commit/f37496e893d743dbd01c802c8e8cdc16498a1604 --

[issue34735] Modules/timemodule.c: Memory leak in time_strftime()

2018-09-21 Thread miss-islington
Change by miss-islington : -- pull_requests: +8882 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34735] Modules/timemodule.c: Memory leak in time_strftime()

2018-09-21 Thread miss-islington
Change by miss-islington : -- pull_requests: +8883 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34735] Modules/timemodule.c: Memory leak in time_strftime()

2018-09-21 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 91e6c8717b7dcbcc46b189509de5f2d335819f37 by Serhiy Storchaka (Zackery Spytz) in branch 'master': bpo-34735: Fix a memory leak in Modules/timemodule.c (GH-9418) https://github.com/python/cpython/commit/91e6c8717b7dcbcc46b189509de5f2d335819f37

[issue34735] Modules/timemodule.c: Memory leak in time_strftime()

2018-09-19 Thread Paul Ganssle
Change by Paul Ganssle : -- nosy: +p-ganssle ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34735] Modules/timemodule.c: Memory leak in time_strftime()

2018-09-19 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +8838 stage: -> patch review ___ Python tracker ___ ___

[issue34735] Modules/timemodule.c: Memory leak in time_strftime()

2018-09-19 Thread Zackery Spytz
New submission from Zackery Spytz : There is a missing PyMem_Free(format) in time_strftime(). I'll create a PR. -- components: Extension Modules messages: 325754 nosy: ZackerySpytz priority: normal severity: normal status: open title: Modules/timemodule.c: Memory leak in