Home - Waterfall Grid T-Grid Console Builders Recent Builds Buildslaves Changesources - JSON API - About

Builder curl-ares-solaris10-i386 Build #4531

Results:

Failed

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision53be819ca8291b591332aeeae480bd0ae0d08d24
Changes6 changes

BuildSlave:

unstable10x

Reason:

The SingleBranchScheduler scheduler named 'schedule-curl-ares-solaris10-i386' triggered this build

Steps and Logfiles:

  1. git updating ( 15 secs )
    1. stdio
    1. - no logs -
    1. - no logs -
  2. Runtest  
    1. - no logs -
    1. - no logs -

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-ares-solaris10-i386 slave
buildername curl-ares-solaris10-i386 Builder
buildnumber 4531 Build
codebase Build
project curl Build
repository https://github.com/curl/curl.git Build
revision 53be819ca8291b591332aeeae480bd0ae0d08d24 Build
scheduler schedule-curl-ares-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/curl-ares-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Filippo Tedeschi
  3. Joshua Rogers
  4. Max Dymond
  5. Stefan Eissing

Timing:

StartMon Sep 21 22:19:39 2026
EndTue Sep 22 08:09:01 2026
Elapsed9 hrs, 49 mins, 21 secs

All Changes:

:

  1. Change #282465

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 21 Sep 2026 14:10:23
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision d1317b5d4a5c8430133a588fb812d5c5fa327b79

    Comments

    parsedate: remove the unused leading three letters
    The three first letters of the weekdays are never actually used in the
    weekday array so drop them. Also make the array local.
    
    Closes #23013

    Changed files

    • lib/parsedate.c
    • tests/libtest/lib517.c
  2. Change #282494

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Mon 21 Sep 2026 16:50:41
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 557a52f21e37a626725a9e708c02af129c3ece1b

    Comments

    http: only enable Negotiate/NTLM to allowed origins
    Restrict Negotiate/NTLM to only "allowed" origins, irregardless of where
    credentials are sourced from.
    
    Closes #23012

    Changed files

    • lib/http.c
  3. Change #282497

    Category curl
    Changed by Filippo Tedeschi <filippotedeschi98ohnoyoudont@gmail.com>
    Changed at Mon 21 Sep 2026 17:10:18
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision ce359773039d9925935ae21f345c312742b1fea9

    Comments

    getinfo: make sure CURLINFO_REDIRECT_URL does not contain creds
    Follow-up to 7a6bd02: make sure data->info.wouldredirect (exposed via
    CURLINFO_REDIRECT_URL and %{redirect_url}) does not contain credentials
    inherited from the original request URL or netrc when resolving relative
    redirect targets in FOLLOW_FAKE mode.
    
    Verified in test 1877
    
    Closes #23020

    Changed files

    • lib/http.c
    • tests/data/Makefile.am
    • tests/data/test1877
  4. Change #282498

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 21 Sep 2026 17:12:59
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 3aa67d5e49b99c922a40faac941e48f644690c91

    Comments

    digest: quote the digest-uri param as well
    Verified by test2967
    
    Fixes #23018
    Reported-by: Yechan Bae
    Closes #23022

    Changed files

    • lib/vauth/digest.c
    • tests/data/Makefile.am
    • tests/data/test2967
  5. Change #282501

    Category curl
    Changed by Joshua Rogers <MegaManSecohnoyoudont@users.noreply.github.com>
    Changed at Mon 21 Sep 2026 17:43:19
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 7934b5400f3e95ee63c3658c9bda2ec35e0afb31

    Comments

    capsule: reject a capsule that can never be buffered
    The decoder waited for the full advertised payload before checking that
    it fits anywhere, so a peer advertising a length the receive queue can
    never hold made cf_capsule_recv() return CURLE_AGAIN forever.
    
    Check the destination buffer first and fail when the receive queue is
    full and still short of the capsule. Also bound the length so that
    offset + payload_len cannot wrap.
    
    Add a unit3400 case for the full-queue rejection.
    
    Closes #22998

    Changed files

    • lib/vquic/capsule.c
    • tests/unit/unit3400.c
  6. Change #282504

    Category curl
    Changed by Max Dymond <cmeister2ohnoyoudont@gmail.com>
    Changed at Mon 21 Sep 2026 18:21:42
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 53be819ca8291b591332aeeae480bd0ae0d08d24

    Comments

    escape: use hex-pair lookup in curl_easy_escape
    Copy precomputed uppercase hex pairs instead of looking up each digit
    separately. Preserve literal-run batching and allocation behavior.
    
    Add coverage for all 256 byte values, checking exact encoded output
    and round-trip decoding.
    
    Closes #23021

    Changed files

    • lib/escape.c
    • tests/libtest/lib1396.c