Skip to content

Commit 5308c26

Browse files
KristofferCd-netto
andauthored
Backport GC typo fix to 1.10 (#54299)
Co-authored-by: Diogo Netto <[email protected]>
1 parent 61adee2 commit 5308c26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gc.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -2052,7 +2052,7 @@ STATIC_INLINE void gc_mark_array8(jl_ptls_t ptls, jl_value_t *ary8_parent, jl_va
20522052
pushed_chunk = 1;
20532053
}
20542054
}
2055-
for (; ary8_begin < ary8_end; ary8_begin += elsize) {
2055+
for (; ary8_begin < scan_end; ary8_begin += elsize) {
20562056
for (uint8_t *pindex = elem_begin; pindex < elem_end; pindex++) {
20572057
jl_value_t **slot = &ary8_begin[*pindex];
20582058
new_obj = *slot;

0 commit comments

Comments
 (0)