Skip to content

Commit 751490d

Browse files
committed
hack in a fix to getting the right lambda for the incremental deserializer
fix #18449 (the real, non-buggy fix is in #18413 for v0.6-dev master)
1 parent af5f388 commit 751490d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gf.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ JL_DLLEXPORT jl_lambda_info_t *jl_specializations_get_linfo(jl_method_t *m, jl_t
121121
{
122122
JL_LOCK(&m->writelock);
123123
jl_typemap_entry_t *sf = jl_typemap_assoc_by_type(m->specializations, type, NULL, 1, /*subtype*/0, /*offs*/0);
124-
if (sf && jl_is_lambda_info(sf->func.value) && ((jl_lambda_info_t*)sf->func.value)->code != jl_nothing) {
124+
if (sf && jl_is_lambda_info(sf->func.value) && (!allow_exec || sf->func.linfo->code != jl_nothing)) {
125125
JL_UNLOCK(&m->writelock);
126126
return (jl_lambda_info_t*)sf->func.value;
127127
}

0 commit comments

Comments
 (0)