mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-17 12:18:08 +00:00
fix unittest
This commit is contained in:
@ -60,7 +60,7 @@ typedef enum prealloc_status {
|
|||||||
\
|
\
|
||||||
if ((prealloc_counter) >= (prealloc_size)) { \
|
if ((prealloc_counter) >= (prealloc_size)) { \
|
||||||
\
|
\
|
||||||
el_ptr = (element_t *)malloc(sizeof(*el_ptr)); \
|
el_ptr = (void *)malloc(sizeof(*el_ptr)); \
|
||||||
if (!el_ptr) { FATAL("error in list.h -> out of memory for element!"); } \
|
if (!el_ptr) { FATAL("error in list.h -> out of memory for element!"); } \
|
||||||
el_ptr->pre_status = PRE_STATUS_MALLOC; \
|
el_ptr->pre_status = PRE_STATUS_MALLOC; \
|
||||||
\
|
\
|
||||||
|
Reference in New Issue
Block a user