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

Builder curl-unthreaded-solaris11-sparc Build #5970

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision7de0a7e71aad984cb7f514fb2987662e2fe8115e
Got Revision7de0a7e71aad984cb7f514fb2987662e2fe8115e
Changes3 changes

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

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

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-unthreaded-solaris11-sparc slave
buildername curl-unthreaded-solaris11-sparc Builder
buildnumber 5970 Build
codebase Build
got_revision 7de0a7e71aad984cb7f514fb2987662e2fe8115e Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 7de0a7e71aad984cb7f514fb2987662e2fe8115e Build
scheduler schedule-curl-unthreaded-solaris11-sparc Scheduler
slavename unstable11s BuildSlave
workdir /export/home/buildbot/slave/curl-unthreaded-solaris11-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Stefan Eissing
  2. alhudz

Timing:

StartMon Jun 8 14:43:23 2026
EndMon Jun 8 15:34:04 2026
Elapsed50 mins, 41 secs

All Changes:

:

  1. Change #269897

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Mon 08 Jun 2026 13:53:02
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 435fb96dcf787335626ada95dc02eb26afcf7bca

    Comments

    netrc: remember and check filename loaded
    Remember the filename of a loaded netrc file to detect changed
    configurations in a reused easy handle.
    
    Closes #21903

    Changed files

    • lib/netrc.c
  2. Change #269898

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Mon 08 Jun 2026 13:53:54
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision d69bfad3fa3daf5e72331f6870667607828d5891

    Comments

    ssl native_ca_store: always reinit
    Add bit `native_ca_store_opt` to keep the setting of
    CURLOPT_(PROXY_)SSL_OPTIONS and use that to calculate every easy
    transfer if a native CA store shall be used or not.
    
    This avoids `native_ca_store` getting stuck on TRUE after being set
    once.
    
    Closes #21902

    Changed files

    • lib/doh.c
    • lib/setopt.c
    • lib/vtls/vtls_config.c
  3. Change #269899

    Category curl
    Changed by alhudz <al.hudz.kohnoyoudont@gmail.com>
    Changed at Mon 08 Jun 2026 13:56:10
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 7de0a7e71aad984cb7f514fb2987662e2fe8115e

    Comments

    chunked: reject invalid bytes in trailer
    Trailers are delivered to the application as headers via
    CLIENTWRITE_TRAILER, but unlike regular response headers they skipped
    the verify_header() checks, so a server could smuggle a nul byte (or
    stray CR) into a header reaching CURLOPT_HEADERFUNCTION and
    curl_easy_header().
    
    Run each assembled trailer line through Curl_verify_header(), the same
    validation used for normal headers.
    
    Covered by the new test 2106.
    
    Closes #21896

    Changed files

    • lib/http.c
    • lib/http.h
    • lib/http_chunks.c
    • tests/data/Makefile.am
    • tests/data/test2106