commit | 9ea8fafd6ab45bd5dd4171e68440e62f26b728d1 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Sat Dec 03 13:07:47 2016 -0800 |
committer | Benjamin Peterson <benjamin@python.org> | Sat Dec 03 13:07:47 2016 -0800 |
tree | 574f87c38afae4428025833aeb598928dd8157ff | |
parent | e95048e8bb05ed23e7bf281ad445ef4c27b28433 [diff] [blame] |
fix function name
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index fb435e3..e73805f 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c
@@ -6910,7 +6910,7 @@ tested against in gzip.GzipFile.__init__() - see issue #13781. */ f = PyFile_FromFile(NULL, "<fdopen>", orgmode, fclose); if (f == NULL) { - PyMEM_FREE(mode); + PyMem_FREE(mode); return NULL; } Py_BEGIN_ALLOW_THREADS