mirror of
https://github.com/python/cpython.git
synced 2026-05-10 22:50:18 -04:00
51e3e450fb
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.