From dfa52572bdc1024342fa1a227ff627386e097a12 Mon Sep 17 00:00:00 2001 From: Andrea Corallo Date: Tue, 9 Jun 2020 00:06:33 +0200 Subject: [PATCH] * src/pdumper.c (dump_do_dump_relocation): Fix 'lambda_gc_guard' fill value. Given 'lambda_gc_guard' is in use for sanity checking fill it with t as value. --- src/pdumper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pdumper.c b/src/pdumper.c index 92ac96a8faa..8cb9284c014 100644 --- a/src/pdumper.c +++ b/src/pdumper.c @@ -5367,7 +5367,7 @@ dump_do_dump_relocation (const uintptr_t dump_base, &(comp_u->data_imp_relocs[XFIXNUM (lambda_data_idx)]); eassert (EQ (*fixup, Qlambda_fixup)); *fixup = tem; - Fputhash (tem, Qnil, comp_u->lambda_gc_guard); + Fputhash (tem, Qt, comp_u->lambda_gc_guard); } break; } -- 2.39.5