-
Notifications
You must be signed in to change notification settings - Fork 363
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
build: Remove another uninitialized variable in curl handler #3678
Conversation
Signed-off-by: dann frazier <[email protected]>
Did the compiler emit a warning about it? I find it weird to initialize a variable that will be garbaged after the function, and my local build did not catch it (with gcc14). |
Thanks for merging. And yes, it did, apologies for not explicitly mentioning that. Here's a log of the failed build, followed by a log of applying the fix and continuing the build. Perhaps something in the way we have our gcc-14 configured is giving us different behavior? Or perhaps it's the way I'm configuring the mamba build?
And now if I apply the fix and continue:
|
Thanks for the detailed log ;) |
Similar to commit 4c5c1d7. Compile-tested only.