-
Notifications
You must be signed in to change notification settings - Fork 396
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
Remove NULL check for Self() in TreeTop::join #4836
Conversation
@genie-omr build all |
@tuckermiles70 please ensure you have signed the ECA and that you sign your commits - see the contributing guide in the docs directory for details. |
@andrewcraik Sorry about that, should be all good now. |
@tuckermiles70 thanks for your first contribution. The ECA check has failed again due to the merge commit added to the branch (8bddb1e). The ECA requires that every commit be signed off. The fix is simple. Just squash the entire change into a single commit. The commit message could be improved slightly [1] to be consistent with the rest of the contributions. Here is a potential example in imperative mood:
Once we get that fixed up and all the checks pass I'll kick off a test build and we'll get the change merged. Thanks! [1] https://github.com/eclipse/omr/blob/master/CONTRIBUTING.md#commit-guidelines |
8bddb1e
to
286023b
Compare
Thank you @fjeremic and others for being so helpful, I believe I have successfully squashed the commits and strengthened my commit message. |
@tuckermiles70 we're almost there. There seems to be some foreign commits added to this PR as part of your rebase. |
286023b
to
08f1b51
Compare
@fjeremic I believe I have cleared this up |
ECA sign-off status seems to not be getting validated. Making sure my emails are consolidated now |
`OMR::TreeTop::join()` checks if self() is NULL [1], which is odd because it never makes sense to call a member function on a NULL object. Such calls are undefined behaviour. Closes: eclipse-omr#4835 Signed-off-by: Tucker <tuckermiles70@gmail.com>
08f1b51
to
82289e7
Compare
@fjeremic All checks seem to pass now! |
@genie-omr build all |
OMR::TreeTop::join()
checks if self() is NULL [1], which is oddbecause it never makes sense to call a member function on a NULL
object. Such calls are undefined behaviour.
Closes: #4835
Signed-off-by: Tucker tuckermiles70@gmail.com