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

Builder curl-unthreaded-solaris11-sparc Build #6429

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision3a397f7a05a46521b2772670b92ffda53fe05598
Got Revision3a397f7a05a46521b2772670b92ffda53fe05598
Changes2 changes

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

  1. git update ( 10 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 6429 Build
codebase Build
got_revision 3a397f7a05a46521b2772670b92ffda53fe05598 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 3a397f7a05a46521b2772670b92ffda53fe05598 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. Joshua Rogers
  2. Stefan Eissing

Timing:

StartWed Sep 16 17:34:41 2026
EndWed Sep 16 18:00:59 2026
Elapsed26 mins, 17 secs

All Changes:

:

  1. Change #281944

    Category curl
    Changed by Joshua Rogers <MegaManSecohnoyoudont@users.noreply.github.com>
    Changed at Wed 16 Sep 2026 19:11:32
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision a2fa1be85bf7d290370a15783bc1f182e2984bfb

    Comments

    lib: reject internal handles in the multi/easy public API
    - Change curl_multi_add_handle(), curl_multi_remove_handle() and
      Curl_eapi_enter() to refuse easy handles with state.internal set.
    
    Prior to this change, a notify callback that removed and cleaned up the
    handle it gets for CURLMNOTIFY_INFO_READ freed multi->admin, leading to
    a use-after-free and a double-free in curl_multi_cleanup().
    
    Co-authored-by: Stefan Eissing
    
    Closes https://github.com/curl/curl/pull/22917
    Closes https://github.com/curl/curl/pull/22966

    Changed files

    • docs/libcurl/curl_multi_remove_handle.md
    • docs/libcurl/opts/CURLMOPT_NOTIFYFUNCTION.md
    • lib/api.c
    • lib/multi.c
    • tests/data/Makefile.am
    • tests/data/test3107
    • tests/libtest/Makefile.inc
    • tests/libtest/lib3107.c
  2. Change #281945

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Wed 16 Sep 2026 19:11:33
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 3a397f7a05a46521b2772670b92ffda53fe05598

    Comments

    http2: update a refused stream's error after GOAWAY
    When a server announced in a GOAWAY message that it will not process
    a stream, make the error code from the GOAWAY the stream's error code.
    
    Prior to this change GOAWAY HTTP_1_1_REQUIRED did not affect the refused
    stream's error and libcurl wrongly retried it with http/2.
    
    Reported-by: Adam Shirt
    
    Fixes https://github.com/curl/curl/issues/22923
    Closes https://github.com/curl/curl/pull/22946

    Changed files

    • lib/http2.c