Skip to content
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 Check for _cookieJar in HTTPClient (#6266) #6280

Merged
merged 2 commits into from
Feb 16, 2022

Conversation

bbsan2k
Copy link
Contributor

@bbsan2k bbsan2k commented Feb 14, 2022

This entire section above can be deleted if all items are checked.


Summary

Fix nullptr in HTTPClient with _cookieJar

Impact

Fixes #6266

@CLAassistant
Copy link

CLAassistant commented Feb 14, 2022

CLA assistant check
All committers have signed the CLA.

@mrengineer7777
Copy link
Collaborator

mrengineer7777 commented Feb 14, 2022

Question: does this code fix just indent the function and put brackets around it for "if (_cookieJar)"?
Suggestion: rather than indenting all the code, use this shorter form:
if (!_cookieJar) return; Note the "!", which is equivalent to if(_cookieJar==NULL).
Feel free to break it into two lines and/or add braces as fits the coding style.
e.g.

if (!_cookieJar) return;
if (!_cookieJar) { return; }
if (!_cookieJar) { return; }

This comment is not a review on the actual fix, just a way to minimize changes and make it easier to review.
Edit: Github does not display the CR for the inline code.

@bbsan2k
Copy link
Contributor Author

bbsan2k commented Feb 14, 2022

Question: does this code fix just indent the function and put brackets around it for "if (_cookieJar)"? Suggestion: rather than indenting all the code, use this shorter form: if (!_cookieJar) return; Note the "!", which is equivalent to if(_cookieJar==NULL). Feel free to break it into two lines and/or add braces as fits the coding style. e.g.

if (!_cookieJar) return; if (!_cookieJar) { return; } if (!_cookieJar) { return; }

This comment is not a review on the actual fix, just a way to minimize changes and make it easier to review. Edit: Github does not display the CR for the inline code.

I wanted to avoid having multiple return paths for the code for better maintainability / debugging. This way the code reaches the end of the functions' scope, no matter what.

But I also understand the approach to try to return as soon as possible. What is the general strategy and code style for this within arduino framework / component?

@me-no-dev
Copy link
Member

I will agree with @mrengineer7777 here. Exit as soon as possible.

if (!_cookieJar) {
    return;
}

@bbsan2k
Copy link
Contributor Author

bbsan2k commented Feb 14, 2022

Ok, PR is updated 😊

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

HTTPClient: CookieJar is initialized as nullptr but never checked
4 participants