mirror of
https://github.com/python/cpython.git
synced 2026-01-27 21:25:12 +00:00
Fix a leak and subsequent crash in parsetok.c caused by realloc misuse on a rare codepath. Realloc returns a null pointer on failure, and then growable_comment_array_deallocate crashes later when it dereferences it.