Fix usage of PyMem_Malloc() in os.stat()
authorVictor Stinner <victor.stinner@gmail.com>
Wed, 16 Mar 2016 13:30:16 +0000 (14:30 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Wed, 16 Mar 2016 13:30:16 +0000 (14:30 +0100)
commitc36674a2c52ecb30e180b3bcced2b8c529cf72fb
treec9fac135fceb8ef3ccb154301e42283314967d0b
parentad524375af042a549d28ec252f3071a595b892b2
Fix usage of PyMem_Malloc() in os.stat()

Issue #26563: Replace PyMem_Malloc() with PyMem_RawMalloc() in the Windows
implementation of os.stat(), since the code is called without holding the GIL.
Modules/posixmodule.c