You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 6, 2023. It is now read-only.
From realloc man page:
"If the new size is larger than the old size, the added memory will not be initialized."
groupcheck/groupcheck.c
Line 839 in 3a6c336
As the first call is to calloc, this might lead to false assumptions when accessing the memory.
A possible solution is to memset the data buffer after realloc.
The text was updated successfully, but these errors were encountered: