Juuso Alasuutari
Juuso Alasuutari
> We don't keep older versions of packages around, but I (or you) can spin up a github actions run for the `libcurl` package with it reverted to 8.9.0 Much...
Heads up, there's a tentative upstream fix, and it looks like ~~8.9.2~~ 8.10.0 should be just around the corner: https://github.com/curl/curl/commit/3eec5afbd0b6377eca893c392569b2faf094d970
> Thanks for the heads up. If it's pending immediate release I think it should be fine to wait for that instead of cherry picking it for a 8.9.1-1 revision....
@falkTX this is about as trivial of a fix as it gets, would be nice to see it merged.
You're passing an invalid memory address to a public API function. It expects the caller to pass a pointer to a valid address. The function already checks for a null...
Note to self: I think this still needs 3 changes: 1. Instead of printing out one line at a time on the go, accumulate the output and print it all...
Those 3 missing things I mentioned are now fixed. The output is sorted on the UTF-8-encoded paths. A given set of payloads will always produce the exact same output with...
@mstorsjo I just rebased this and PR #177, the test-msvc-wine-macos failure seems unrelated to either PR. I checked and there's no difference that seems relevant. Nothing at all has changed...
> > @mstorsjo I just rebased this and PR #177, the test-msvc-wine-macos failure seems unrelated to either PR. I checked and there's no difference that seems relevant. Nothing at all...
There's a solution: check the installed version of wine-mono. ```sh if ! somethingsomething; then curl -s -L -O https://github.com/madewokherd/wine-mono/releases/download/wine-mono-9.0.0/wine-mono-9.0.0-x86.msi $WINE msiexec /i wine-mono-9.0.0-x86.msi fi ``` I just don't know exactly...