From b51724aac5b8024dd8515534d66b20f71742415a Mon Sep 17 00:00:00 2001 From: normal Date: Tue, 30 Oct 2018 18:26:12 +0000 Subject: mjit.c (free_list): clear .length For robustness against future changes. There should be no impact at the moment,here, but we may call mjit_finish more than once in a process lifetime in the future (implementing "stop" instead of just "pause") git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65443 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- mjit.c | 1 + 1 file changed, 1 insertion(+) (limited to 'mjit.c') diff --git a/mjit.c b/mjit.c index 888f0461aa..3cb8f1daf1 100644 --- a/mjit.c +++ b/mjit.c @@ -135,6 +135,7 @@ free_list(struct rb_mjit_unit_list *list) free_unit(node->unit); xfree(node); } + list->length = 0; } /* MJIT info related to an existing continutaion. */ -- cgit v1.2.3