Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If
SSL_CTX_add_extra_chain_cert, but a subsequent operation fails, we would free the certificate at thefailedlabel. Wouldn't that also be a double free when theSSL_CTXis freed?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure if I understand your comment correctly.
If
SSL_CTX_add_extra_chain_certsucceeds,PEM_read_bio_X509will be called. And if that fails,certisnullptrand we leave thiswhileloop. Sincecertisnullptr, it won't be freed even if we go tofaillabel later.If
SSL_CTX_add_extra_chain_certfails,SSL_CTXdoesn't have ownership, so thecerthas to be freed. We jump tofaillabel, and thecertwill be freed.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, I missed the extra read at the end of the loop. IMHO, writing it like this would be a lot clearer: