mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-10 01:01:33 +00:00
el no longer has to be used in loop
This commit is contained in:
parent
9d067d26da
commit
d064b2e4af
@ -107,6 +107,7 @@ static inline void list_append(list_t *list, void *el) {
|
|||||||
if (!el_box) FATAL("foreach over uninitialized list"); \
|
if (!el_box) FATAL("foreach over uninitialized list"); \
|
||||||
while (el_box != head) { \
|
while (el_box != head) { \
|
||||||
\
|
\
|
||||||
|
__attribute__((unused)) \
|
||||||
type *el = (type *)((el_box)->data); \
|
type *el = (type *)((el_box)->data); \
|
||||||
/* get next so el_box can be unlinked */ \
|
/* get next so el_box can be unlinked */ \
|
||||||
element_t *next = el_box->next; \
|
element_t *next = el_box->next; \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user