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
The code above contains an error on the line *err = NULL (the err has been malloced to the sizeof(char), and is being assigned a pointer). Symbiotic however does not report an error.
This may be related to this warning issued by symbiotic:
KLEE: WARNING ONCE: Alignment of memory from call "malloc" is not modelled. Using alignment of 8.
symbiotic --version
version: 6.1.0-dev
The text was updated successfully, but these errors were encountered:
Yes, I am able to reproduce this one. KLEE does not find any error not even on the original file without any optimizations and slicing, so the problem should be in KLEE, probably due to the warning you mentioned.
The code above contains an error on the line
*err = NULL
(the err has been malloced to thesizeof(char)
, and is being assigned a pointer). Symbiotic however does not report an error.This may be related to this warning issued by symbiotic:
The text was updated successfully, but these errors were encountered: