mirror of
https://github.com/python/cpython.git
synced 2026-05-09 22:20:38 -04:00
4e10ed3b86
close() calls would attempt to free() the buffer already free()ed on the first close(). [bug introduced with patch #788249] Making sure that the buffer is free()ed in file object deallocation is a belt-n-braces bit of insurance against a memory leak.