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

Builder curl-unthreaded-solaris11-sparc Build #5469

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisionaeee5dd616d825fd67b59b5186fcb51b3c081eae
Got Revisionaeee5dd616d825fd67b59b5186fcb51b3c081eae
Changes6 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 ...' ( 22 mins, 54 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 5469 Build
codebase Build
got_revision aeee5dd616d825fd67b59b5186fcb51b3c081eae Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision aeee5dd616d825fd67b59b5186fcb51b3c081eae 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. Daniel Stenberg
  2. Stefan Eissing
  3. renovate[bot]

Timing:

StartTue Mar 17 15:24:20 2026
EndTue Mar 17 16:36:49 2026
Elapsed1 hrs, 12 mins, 28 secs

All Changes:

:

  1. Change #261315

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 17 Mar 2026 14:45:01
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision e894699c1ea4a5e4cf0256fc9eba05a754ab1e58

    Comments

    strerr: correct the strerror_s() return code condition
    In curlx_strerror on Windows, the condition checks `!strerror_s(...)`
    (true on success) and therefore always evaluates the fallback block.
    Even when strerror_s successfully produced a valid errno message.
    
    Follow-up to 1eca08a54177403205014
    
    Pointed out by Codex Security
    Closes #20955

    Changed files

    • lib/curlx/strerr.c
  2. Change #261316

    Category curl
    Changed by renovate[bot] <29139614+renovate[bot]ohnoyoudont@users.noreply.github.com>
    Changed at Tue 17 Mar 2026 14:48:38
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision b881bc0021f8237c0476238ae6c7ac57d94ae2b5

    Comments

    Dockerfile: update debian:bookworm-slim Docker digest to f065376
    Closes #20946

    Changed files

    • Dockerfile
  3. Change #261317

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 17 Mar 2026 14:52:12
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 90b9f514581d671afcf66a59d4041e76f0a82cce

    Comments

    tool_operate: fix minor memory-leak on early error
    When .curlrc is parsed successfully but the tool exits early before
    parse_args() executes; the allocated path was not freed.
    
    Spotted by Codex Security
    
    Closes #20954

    Changed files

    • src/tool_operate.c
  4. Change #261324

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Tue 17 Mar 2026 14:53:15
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 91b422d356a52d32708c02514d8ede66363e8847

    Comments

    pytest: add additional quiche check for flaky test_05_01
    As long as stream resets are not visible in the API reliably,
    exclude test_05_01, same as test_05_02 already.
    
    Closes #20952

    Changed files

    • tests/http/test_05_errors.py
  5. Change #261325

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 17 Mar 2026 14:55:11
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 1098e1044e6aadb471999c88bd184132c3ebc3d8

    Comments

    tool_urlglob: fix memory-leak on glob range overflow
    Follow-up to 5f273fdddf76544de960b
    
    Pointed out by Codex Security
    
    Closes #20956

    Changed files

    • src/tool_urlglob.c
  6. Change #261326

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Tue 17 Mar 2026 15:01:29
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision aeee5dd616d825fd67b59b5186fcb51b3c081eae

    Comments

    connection bits: move 'connect_only' here
    Move the bit `connection_only` from `connectdata` to `ConnectBits`.
    Since we keep all other bits there, seems the correct place.
    
    Closes #20959

    Changed files

    • lib/conncache.c
    • lib/cshutdn.c
    • lib/http2.c
    • lib/multi.c
    • lib/url.c
    • lib/urldata.h
    • lib/vtls/gtls.c
    • lib/vtls/openssl.c
    • lib/vtls/wolfssl.c