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

Builder curl-ares-solaris11-sparc Build #4497

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

  1. git update ( 6 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 28 mins, 22 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-ares-solaris11-sparc slave
buildername curl-ares-solaris11-sparc Builder
buildnumber 4497 Build
codebase Build
got_revision 48df7b29d905314c2c0c3b4b3f949569a490d3aa Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 48df7b29d905314c2c0c3b4b3f949569a490d3aa Build
scheduler schedule-curl-ares-solaris11-sparc Scheduler
slavename unstable11s BuildSlave
workdir /export/home/buildbot/slave/curl-ares-solaris11-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Stefan Eissing

Timing:

StartTue Oct 21 16:43:40 2025
EndTue Oct 21 18:06:36 2025
Elapsed1 hrs, 22 mins, 55 secs

All Changes:

:

  1. Change #246340

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 21 Oct 2025 16:24:21
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 76d28525509c2c06786fc9b8d2e2e8536dceb3bc

    Comments

    hmac: free memory properly on errors
    If one of the hmac init calls fail, Curl_HMAC_init previously would
    return without first freeing the allocated HMAC_context.
    
    Fixes #19176
    Reported-by: WangDaLei on github
    Closes #19177

    Changed files

    • lib/hmac.c
  2. Change #246343

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Tue 21 Oct 2025 16:30:47
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 40f7cd2bdd14e09b9bb1b4ddefc8b5e5ce71865a

    Comments

    mime: fix unpausing of readers
    When unpausing a transfer, check if the reader pause state differs
    in addition to the "keepon" flags.
    
    Reported-by: 包布丁
    Fixes #18848
    Closes #19178

    Changed files

    • lib/easy.c
    • lib/sendf.c
    • tests/http/test_07_upload.py
    • tests/http/testenv/httpd.py
    • tests/http/testenv/mod_curltest/mod_curltest.c
    • tests/libtest/cli_hx_upload.c
  3. Change #246344

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 21 Oct 2025 16:33:32
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 48df7b29d905314c2c0c3b4b3f949569a490d3aa

    Comments

    cookie: only count accepted cookies in Curl_cookie_add
    The counter used to stop accepting cookies after a certain amount has
    been received in a single response would previously also count some
    cookies that were not actually accepted as they were discarded after the
    counter was increased.
    
    Starting now, the counter is increased only for cookies that were
    accepted.
    
    Pointed out by ZeroPath
    Closes #19157

    Changed files

    • lib/cookie.c