-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
cling assertion crash #8389
Comments
@ferdymercury, it seems that in the first case it was a debug build while the second was a release build. However, looking at https://github.com/root-project/cling/blob/master/lib/Interpreter/DynamicLookup.cpp#L764-L766, I'm not sure that the assertion is useful, given that it seems to be safe to exit the function if the @vgvassilev, any preferences? Should I remove the |
@axel, @vgvassilev, any preferences on this? |
Hm... yeah, maybe removing the assert is the way to go. |
The case of `ExprAddresses == nullptr` seems to be naturally handled in the lines below. Therefore, removing this assertion -as discussed with vvassilev. Closes issue root-project#8389.
The case of `ExprAddresses == nullptr` seems to be naturally handled in the lines below. Therefore, removing this assertion -as discussed with vvassilev. Closes issue #8389.
Describe the bug
One time, I made a typo when writing something in the interpreter that made whole ROOT crash.
Expected behavior
A warning is issued instead of crashing.
To Reproduce
Setup
Additional context
Not sure why, maybe cause I built in 'debug mode' or it is another version, but I have another computer where it does not crash.
The text was updated successfully, but these errors were encountered: