summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean Boussier <jean.boussier@gmail.com>2026-02-01 12:33:28 +0100
committerJean Boussier <jean.boussier@gmail.com>2026-02-01 15:32:28 +0100
commit0a6e365fa036536a6fde88c430e50057264aad88 (patch)
treebfbb8ffc5bbbe4e412d6922b1036eb5d30070478
parent62da4806322091aa2586f9ec376bd0a70600a32a (diff)
eval_jump.c: Use ruby_sized_xfree
-rw-r--r--eval_jump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval_jump.c b/eval_jump.c
index 7593a35e36..6ee8ff4a6f 100644
--- a/eval_jump.c
+++ b/eval_jump.c
@@ -101,7 +101,7 @@ exec_end_procs_chain(struct end_proc_data *volatile *procs, VALUE *errp)
while ((link = *procs) != 0) {
*procs = link->next;
endproc = *link;
- xfree(link);
+ SIZED_FREE(link);
(*endproc.func) (endproc.data);
*errp = errinfo;
}