Project

General

Profile

Bug #7338

Updated by Jason Ish 9 days ago

For example, in @output-json-anomaly.c@ we have: 
 <pre> 
         int r; 
             r = AppLayerGetEventInfoById(event_code, &event_name, &event_type); 
 </pre> <pre> 
 Ultimately, at least for @bittorrent-dht@ this results in a Rust function being called where the return type is i8. Even though Rust appears to return 0, the value seen by C is garbage. 

Back