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

Builder curl-unthreaded-solaris11-i386 Build #5392

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11x

Reason:

The SingleBranchScheduler scheduler named 'schedule-curl-unthreaded-solaris11-i386' triggered this build

Steps and Logfiles:

  1. git update ( 10 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 49 mins, 25 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 1 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-unthreaded-solaris11-i386 slave
buildername curl-unthreaded-solaris11-i386 Builder
buildnumber 5392 Build
codebase Build
got_revision 53be819ca8291b591332aeeae480bd0ae0d08d24 Git
osplatform I386 SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 53be819ca8291b591332aeeae480bd0ae0d08d24 Build
scheduler schedule-curl-unthreaded-solaris11-i386 Scheduler
slavename unstable11x BuildSlave
workdir /export/home/buildbot/slave/curl-unthreaded-solaris11-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 16:58:24 2026
EndMon Sep 21 18:46:01 2026
Elapsed1 hrs, 47 mins, 37 secs

All Changes:

:

  1. 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
  2. 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
  3. 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
  4. 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
  5. 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