commit | 6150f31963cbc24c529b07f6763854fbb7e62f60 | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@gmail.com> | Wed Mar 16 23:25:02 2016 +0100 |
committer | Victor Stinner <victor.stinner@gmail.com> | Wed Mar 16 23:25:02 2016 +0100 |
tree | 99e15d5104bde4808f0b86903d318deeeae48e48 | |
parent | ce911c3fed7e6404fba7de3868b1000425984b1e [diff] |
Fix usage of PyMem_Malloc() in overlapped.c Issue #26563: Replace PyMem_Malloc() with PyMem_RawFree() since PostToQueueCallback() calls PyMem_RawFree() (previously PyMem_Free()) in a new C thread which doesn't hold the GIL.