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
In active_events.c 'pe' is a perf_event_attr, in fuzzer.c 'pe' is a pointer to perf_event_attr. parse_open_event is called with &pe both times. This is likely to crash or corrupt something, and my build warns about it. Judging from the code, fuzzer.c should call parse_open_event with ...,pe not ...,&pe).
The text was updated successfully, but these errors were encountered:
In active_events.c 'pe' is a perf_event_attr, in fuzzer.c 'pe' is a pointer to perf_event_attr. parse_open_event is called with &pe both times. This is likely to crash or corrupt something, and my build warns about it. Judging from the code, fuzzer.c should call parse_open_event with ...,pe not ...,&pe).
The text was updated successfully, but these errors were encountered: