Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bpo-34735: Fix a memory leak in Modules/timemodule.c #9418

Merged

Conversation

ZackerySpytz
Copy link
Contributor

@ZackerySpytz ZackerySpytz commented Sep 19, 2018

The format string was not being freed when ValueError was raised for %y on certain platforms.

There was a missing PyMem_Free(format) in time_strftime().
@pganssle
Copy link
Member

The actual fix here looks good to me, but I am fairly sure that this code is not hit by any of the tests, so I recommend adding a test that hits there.

I think adding this to Lib/test/datetimetester.py under TestDate should work:

@unittest.skipif(not (sys.platform.startswith('aix') or
                      sys.platform.startswith('win'))
                 "%y on Windows and AIX doesn't support years < 1900")
def test_strftime_aixwin_pre1900(self):
    d = self.theclass(1, 1, 1)

    self.assertRaises(ValueError, d.strftime, '%y')

@ZackerySpytz
Copy link
Contributor Author

@pganssle This code is hit in test_y_before_1900() in Lib/test/test_strftime.py.

@pganssle
Copy link
Member

pganssle commented Sep 19, 2018

@ZackerySpytz Ah, tricky tricky. There's a bunch of strftime-related tests in test_time and datetimetester so I didn't notice test_strftime.py. My bad.

@brettcannon
Copy link
Member

Thanks for the patch, @ZackerySpytz ! I'm not sure if my label adding and removing messed up our auto-merge. If it did I will try to merge this tomorrow.

@brettcannon
Copy link
Member

merge approved PR

@serhiy-storchaka serhiy-storchaka merged commit 91e6c87 into python:master Sep 21, 2018
@miss-islington
Copy link
Contributor

Thanks @ZackerySpytz for the PR, and @serhiy-storchaka for merging it 🌮🎉.. I'm working now to backport this PR to: 3.6, 3.7.
🐍🍒⛏🤖

miss-islington pushed a commit to miss-islington/cpython that referenced this pull request Sep 21, 2018
There was a missing PyMem_Free(format) in time_strftime().
(cherry picked from commit 91e6c87)

Co-authored-by: Zackery Spytz <zspytz@gmail.com>
@bedevere-bot
Copy link

GH-9469 is a backport of this pull request to the 3.7 branch.

miss-islington pushed a commit to miss-islington/cpython that referenced this pull request Sep 21, 2018
There was a missing PyMem_Free(format) in time_strftime().
(cherry picked from commit 91e6c87)

Co-authored-by: Zackery Spytz <zspytz@gmail.com>
@bedevere-bot
Copy link

GH-9470 is a backport of this pull request to the 3.6 branch.

miss-islington added a commit that referenced this pull request Sep 21, 2018
There was a missing PyMem_Free(format) in time_strftime().
(cherry picked from commit 91e6c87)

Co-authored-by: Zackery Spytz <zspytz@gmail.com>
miss-islington added a commit that referenced this pull request Sep 21, 2018
There was a missing PyMem_Free(format) in time_strftime().
(cherry picked from commit 91e6c87)

Co-authored-by: Zackery Spytz <zspytz@gmail.com>
@ZackerySpytz
Copy link
Contributor Author

Thank you, @brettcannon and @serhiy-storchaka.

@ZackerySpytz ZackerySpytz deleted the bpo-34735-timemodule.c-leak branch September 22, 2018 18:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants