mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-23 13:19:54 +00:00
160fc95e66
* Use (void) instead of () in function signatures * Add test to avoid further contributions to commit the same mistake
24 lines
428 B
C
24 lines
428 B
C
/* radare - LGPL - Copyright 2014-2020 - condret */
|
|
|
|
#include <r_anal.h>
|
|
#include <r_list.h>
|
|
#include <r_types.h>
|
|
|
|
R_API RAnalCycleFrame *r_anal_cycle_frame_new(void) {
|
|
RAnalCycleFrame *cf = R_NEW0 (RAnalCycleFrame);
|
|
if (cf) {
|
|
if (!(cf->hooks = r_list_new ())) {
|
|
R_FREE (cf);
|
|
}
|
|
}
|
|
return cf;
|
|
}
|
|
|
|
R_API void r_anal_cycle_frame_free(RAnalCycleFrame *cf) {
|
|
if (!cf) {
|
|
return;
|
|
}
|
|
r_list_free (cf->hooks);
|
|
free (cf);
|
|
}
|