diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-03-18 21:24:28 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-18 21:24:28 (GMT) |
commit | c183444f7e2640b054956474d71aae6e8d31a543 (patch) | |
tree | af6f895fc245d43f78618918fef63e37ce7b5196 /Python/preconfig.c | |
parent | a10d426bab66a4e1f20d5e1b9aee3dbb435cf309 (diff) | |
download | cpython-c183444f7e2640b054956474d71aae6e8d31a543.zip cpython-c183444f7e2640b054956474d71aae6e8d31a543.tar.gz cpython-c183444f7e2640b054956474d71aae6e8d31a543.tar.bz2 |
bpo-36301: Fix Py_Main() memory leaks (GH-12420)
bpo-36301, bpo-36333:
* Fix memory allocator used by _PyPathConfig_ClearGlobal():
force the default allocator.
* _PyPreConfig_ReadFromArgv(): free init_ctype_locale memory.
* pymain_main(): call pymain_free() on init error
Co-Authored-By: Stéphane Wirtel <stephane@wirtel.be>
Diffstat (limited to 'Python/preconfig.c')
-rw-r--r-- | Python/preconfig.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Python/preconfig.c b/Python/preconfig.c index a86ece5..1efc7ee 100644 --- a/Python/preconfig.c +++ b/Python/preconfig.c @@ -758,6 +758,7 @@ _PyPreConfig_ReadFromArgv(_PyPreConfig *config, const _PyArgv *args) done: if (init_ctype_locale != NULL) { setlocale(LC_CTYPE, init_ctype_locale); + PyMem_RawFree(init_ctype_locale); } _PyPreConfig_Clear(&save_config); Py_UTF8Mode = init_utf8_mode ; |