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

Builder curl-unthreaded-solaris11-sparc Build #5559

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

  1. git update ( 6 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 23 mins, 47 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-sparc slave
buildername curl-unthreaded-solaris11-sparc Builder
buildnumber 5559 Build
codebase Build
got_revision 9fcc7e4c43cea795f343e3308278a9dba61431d2 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 9fcc7e4c43cea795f343e3308278a9dba61431d2 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. Kaixuan Li
  2. MarkLee131

Timing:

StartMon Mar 30 16:38:24 2026
EndMon Mar 30 17:28:34 2026
Elapsed50 mins, 10 secs

All Changes:

:

  1. Change #262871

    Category curl
    Changed by Kaixuan Li <kaixuan.liohnoyoudont@ntu.edu.sg>
    Changed at Mon 30 Mar 2026 16:13:24
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 2c26cea5ecb168c1e3c980725071828c9b0482b8

    Comments

    socks: add assertion for hostname length in SOCKS5 connect
    socks5_req0_init() rejects hostnames longer than 255 bytes, but the
    later cast to unsigned char in socks5_req1_init() has no local
    indication that it is safe. Add a DEBUGASSERT and comment to document
    the invariant and guard against future refactoring.
    
    Closes #21157

    Changed files

    • lib/socks.c
  2. Change #262872

    Category curl
    Changed by MarkLee131 <kaixuan.liohnoyoudont@ntu.edu.sg>
    Changed at Mon 30 Mar 2026 16:17:42
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 9fcc7e4c43cea795f343e3308278a9dba61431d2

    Comments

    tool: fix two more allocator mismatches
    memory allocated by libcurl (curl_maprintf) must be freed with
    curl_free(), and memory allocated by the tool (curlx_strdup via
    findfile) must be freed with curlx_free().
    
    - tool_cfgable: ech_config is allocated with curl_maprintf, free it
      with curl_free() instead of tool_safefree()
    - config2setopts: known hosts from findfile() is allocated with
      curlx_strdup, free it with curlx_free() instead of curl_free()
    
    Follow-up to b71973c115
    
    Closes #21150

    Changed files

    • .mailmap
    • src/config2setopts.c
    • src/tool_getparam.c