From 73442469a2fb07eecd2777eb726527b68e8da8c5 Mon Sep 17 00:00:00 2001 From: "jan.nijtmans" Date: Fri, 11 Jan 2019 14:35:40 +0000 Subject: =?UTF-8?q?Fix=20crash=20reported=20by=20reported=20by=20Fran?= =?UTF-8?q?=C3=A7ois=20Vogel=20related=20to:=20[cc1e91552c0ca1817292d951f8?= =?UTF-8?q?c694b28c2b2251|cc1e91552c]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- generic/tclExecute.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generic/tclExecute.c b/generic/tclExecute.c index cd78adf..94912ce 100644 --- a/generic/tclExecute.c +++ b/generic/tclExecute.c @@ -5238,7 +5238,7 @@ TEBCresume( /* Every range of an empty list is an empty list */ if (objc == 0) { /* avoid return of not canonical list (e. g. spaces in string repr.) */ - if (ListObjIsCanonical(valuePtr)) { + if (TclListObjIsCanonical(valuePtr)) { TRACE_APPEND(("\n")); NEXT_INST_F(9, 0, 0); } -- cgit v0.12