-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix msan-problems in fuzzer-environment #129
Conversation
Do you have a link to the error message? I don't understand how those could ever be used uninitialized. |
for the use of md: |
Thanks, that explains what's happening!
So this can't happen normally.
I don't yet fully understand this one. The only possible explanation I can think of is that the |
makes sense, I fixed that |
b4addb1
to
c848d07
Compare
I wanted to refactor the prepare-steps in test_parser_fuzz.c anyway, so maybe I can find the problem with spi by doing that |
It is confusing.., I'll try to investigate further on it, maybe I find something. But yes, normally both is checked so it can't happen. |
problem found: msan doesn't work well with the used optimization level (O2). With O0 the spi-problem is not reproducible. I'll try to fix that with cmake. |
25c3a81
to
a50f01d
Compare
Looks good now, thanks! |
make msan in libfuzzer-pipeline happy