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
I'm trying to pass arguments to a C function using the FFI. This works just fine with regular arguments but when arguments like --arg1 are included things get weird. Sample code to reproduce this issue is available here: https://github.com/Nullreff/argsexample
The program you've linked to is actually exhibiting memory corrupting, likely leading to the oddness that you're seeing. This line is creating a CString, getting a pointer to it, and then deallocating the CString (as it is a temporary). This means that all the pointers passed to C are dangling references.
You'll probably want to create a Vec<CString> on the stack and then from that create a Vec<*const c_char>, for example:
let args = args().map(|arg| CString::new(arg).unwrap()).collect::<Vec<_>>();let arg_ptrs = args.iter().map(|arg| arg.as_ptr()).collect::<Vec<_>>();unsafe{printargs(arg_ptrs.len(), arg_ptrs.as_ptr());}
More information about this footgun can be found in #16035.
I'm trying to pass arguments to a C function using the FFI. This works just fine with regular arguments but when arguments like
--arg1
are included things get weird. Sample code to reproduce this issue is available here: https://github.com/Nullreff/argsexampleThe text was updated successfully, but these errors were encountered: