Suppress a warning

Loop variables of `list_for_each` need to be initialized.
This commit is contained in:
Nobuyoshi Nakada 2021-04-01 22:54:42 +09:00
parent 68a8f611e0
commit 9513fcd5bc
No known key found for this signature in database
GPG Key ID: 7CD2805BFA3770C6

2
gc.c
View File

@ -3344,7 +3344,7 @@ objspace_each_objects(rb_objspace_t *objspace, each_obj_callback *callback, void
* call the callback over each page that exists in this buffer. Thus it
* is safe for the callback to allocate objects without possibly entering
* an infinte loop. */
struct heap_page *page;
struct heap_page *page = 0;
size_t pages_count = 0;
list_for_each(&heap_eden->pages, page, page_node) {
pages[pages_count] = page;