-
Notifications
You must be signed in to change notification settings - Fork 7.6k
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
Conversation
Question: does this code fix just indent the function and put brackets around it for "if (_cookieJar)"?
This comment is not a review on the actual fix, just a way to minimize changes and make it easier to review. |
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? |
I will agree with @mrengineer7777 here. Exit as soon as possible. if (!_cookieJar) {
return;
} |
Ok, PR is updated 😊 |
This entire section above can be deleted if all items are checked.
Summary
Fix nullptr in HTTPClient with _cookieJar
Impact
Fixes #6266