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 am executing a function which takes pointer to a following struct. I want to pass a non-null pointer, hence I use ParameterVal::NonNullPointer. But it reports a NullPointerDereference if I tried to store to session member (test->session = 0).
I am executing a function which takes pointer to a following struct. I want to pass a non-null pointer, hence I use
ParameterVal::NonNullPointer
. But it reports aNullPointerDereference
if I tried to store tosession
member (test->session = 0
).Issue seems to be due to the
param_size
which is not of the actual object size.haybale/src/symex.rs
Line 92 in 67d91f0
The text was updated successfully, but these errors were encountered: