Skip to content

Avoid exceeding the mark stack limit (case 1235202) #1299

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion external/bdwgc
Submodule bdwgc updated 2 files
+1 −0 include/gc_vector.h
+14 −1 vector_mlc.c
2 changes: 1 addition & 1 deletion mono/metadata/boehm-gc.c
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ static mse * GC_gcj_vector_proc (word * addr, mse * mark_stack_ptr,
/* end at last element or max chunk size */
word *actual_end = actual_start + length * words_per_element;

return GC_gcj_vector_mark_proc (mark_stack_ptr, element_desc, start, actual_end, words_per_element);
return GC_gcj_vector_mark_proc (mark_stack_ptr, mark_stack_limit, element_desc, start, actual_end, words_per_element);
}

#endif
Expand Down