Suppress warning (uninitialized variable).

This commit is contained in:
Koichi Sasada 2019-05-27 17:15:58 +09:00
Родитель fa7a768fdf
Коммит cfd839c140
1 изменённых файлов: 1 добавлений и 1 удалений

2
gc.c
Просмотреть файл

@ -1088,7 +1088,7 @@ check_rvalue_consistency_force(const VALUE obj, int terminate)
}
else if (!is_pointer_to_heap(objspace, (void *)obj)) {
/* check if it is in tomb_pages */
struct heap_page *page;
struct heap_page *page = NULL;
list_for_each(&heap_tomb->pages, page, page_node) {
if (&page->start[0] <= (RVALUE *)obj &&
(RVALUE *)obj < &page->start[page->total_slots]) {