mirror of
https://github.com/python/cpython.git
synced 2026-08-17 22:24:13 +08:00
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.