diff options
| author | 2022-10-11 08:55:31 +0200 | |
|---|---|---|
| committer | 2022-10-11 08:55:31 +0200 | |
| commit | 7a138f44719f0217775298928ee2d828d74dd917 (patch) | |
| tree | d4853f1f86bfdda2647fff98fa45635659b3dbaa /pez.c | |
| parent | 2e327ef2ce5a1507d8e54a5a3fa510f1f625f884 (diff) | |
missing gcmark()
Diffstat (limited to 'pez.c')
| -rw-r--r-- | pez.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -809,6 +809,9 @@ markproto(PezContext *cx, Proto *pr) gcmark(cx, unbox_obj(pr->con[i])); } } + if (!pr->nupval && pr->fn0) { + gcmark(cx, (Obj *)pr->fn0); + } } static void |