-
Notifications
You must be signed in to change notification settings - Fork 2.5k
cleanup: unused warning #3801
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
cleanup: unused warning #3801
Conversation
The docs for libcurl say we should be passing in a |
WTF. The docs for |
The signature on that page says |
I don't think that I understand your question. What list are you talking about? The
And this is enforced by https://github.com/curl/curl/blob/master/include/curl/typecheck-gcc.h#L111 It so happens that the Anyway, I opened curl/curl#846 but I don't think that this really impacts us. We're walking the list, we don't actually need knowledge of the number of certs. We can treat that arg as a But again, maybe I didn't understand your question. |
It looks like we're getting the operation and not doing anything with it, when in fact we are asserting that it's not null. Simply assert that we are within the operation boundary instead of using the `git_array_get` macro to do this for us.
curl has clarified that |
Gonna let this run on the CI bots to see what else is out there.