Skip to content
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

Suppress compiler warning on potential buffer overflow #935

Open
wants to merge 3 commits into
base: dev
Choose a base branch
from
Open
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
3 changes: 3 additions & 0 deletions src/heap.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,10 @@ static bool mi_heap_page_is_valid(mi_heap_t* heap, mi_page_queue_t* pq, mi_page_
MI_UNUSED(pq);
mi_assert_internal(mi_page_heap(page) == heap);
mi_segment_t* segment = _mi_page_segment(page);
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wstringop-overflow"
mi_assert_internal(segment->thread_id == heap->thread_id);
#pragma GCC diagnostic pop
mi_assert_expensive(_mi_page_is_valid(page));
return true;
}
Expand Down