From 745dc65b17b3936e3f9f4099f735f174d30c4e0c Mon Sep 17 00:00:00 2001 From: Eddie Elizondo Date: Wed, 21 Feb 2018 20:55:18 -0800 Subject: closes bpo-32898: Fix debug build crash with COUNT_ALLOCS (GH-5800) --- Objects/listobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Objects/listobject.c') diff --git a/Objects/listobject.c b/Objects/listobject.c index f0fe962be9..c8ffeff093 100644 --- a/Objects/listobject.c +++ b/Objects/listobject.c @@ -86,7 +86,7 @@ static void show_alloc(void) { PyInterpreterState *interp = PyThreadState_GET()->interp; - if (!inter->core_config.show_alloc_count) { + if (!interp->core_config.show_alloc_count) { return; } -- cgit v1.2.1