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
infer reports an error which I think is a false positive since all fields of the data structure are assigned values.
uninit_ex.c:23: error: Uninitialized Value
`args.arg0` is read without initialization during the call to `error_triggering_fun()`.
21. struct struct_ex args;
22. args = assign_fields(value);
23. return error_triggering_fun(args);
^
24. }
The text was updated successfully, but these errors were encountered:
I run
infer
with the following example usinginfer -- clang example.c
infer
reports an error which I think is a false positive since all fields of the data structure are assigned values.The text was updated successfully, but these errors were encountered: