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

Builder curl-ares-solaris10-sparc Build #3481

Build In Progress:

[waiting for Lock]

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision86ea3abd41a6d6e38ea3d8ed247ad6cb265fe275
Changes12 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git  
    1. - no logs -
    1. - no logs -
    1. - no logs -
  2. Runtest  
    1. - no logs -
    1. - no logs -

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/curl-ares-solaris10-sparc slave
buildername curl-ares-solaris10-sparc Builder
buildnumber 3481 Build
codebase Build
project curl Build
repository https://github.com/curl/curl.git Build
revision 86ea3abd41a6d6e38ea3d8ed247ad6cb265fe275 Build
scheduler schedule-curl-ares-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/curl-ares-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Andrei Rybak
  2. Daniel Stenberg
  3. Stefan Eissing
  4. Viktor Szakats

Timing:

StartSat Mar 7 01:17:25 2026
Elapsed6 hrs, 2 mins, 23 secs

All Changes:

:

  1. Change #260039

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 06 Mar 2026 15:35:27
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 9a3afc1083202731ed34e3f71cf345ecc6dd9296

    Comments

    cmake: fix `LOCATION` property access condition (debug)
    To match other parts of curl's CMake script and the CMake source.
    
    Ref: https://gitlab.kitware.com/cmake/cmake/-/blob/v3.18.0/Source/cmTargetPropertyComputer.h?ref_type=tags#L68-101
    
    Follow-up to c6cfb2a2f34df80c6d746d1cb07705d3fac7e67a #20828
    
    Closes #20838

    Changed files

    • CMake/Utilities.cmake
  2. Change #260100

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Fri 06 Mar 2026 22:40:29
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision bfb79de206ef710641ff750994bf786b905ee0d3

    Comments

    urldata: byebye `conn->hostname_resolve`
    The strdup() of the hostname to resolve is unnecessary as the sync
    resolve code does not keep the string and the async code makes copies
    already.
    
    Remove the member from `connectdata`.
    
    Closes #20833

    Changed files

    • lib/url.c
    • lib/urldata.h
  3. Change #260101

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Fri 06 Mar 2026 22:41:56
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision b803dc9f208073ef5a4aff94c083a41538b30571

    Comments

    async-ares: blocking resolve timeout handling, better
    Perform the actual timeout calculation in the blocking resolv
    loop each time in the same way, keeping the logic simpler.
    
    The previous version calculated the timeout once, and then
    reduced it by the elapsed time spent in polling/processing.
    This is unnecessarily complicated.
    
    Closes #20819

    Changed files

    • lib/asyn-ares.c
  4. Change #260102

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Fri 06 Mar 2026 22:42:40
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 3c007d6351da59c00ba71bea73f231ac9be1c68b

    Comments

    openssl+ech: workaround for insecure handshakes
    OpenSSL 4.0.0-dev supports ECH with one flaw. If peer verification
    is not enabled, it will report SSL_ECH_STATUS_BAD_NAME on the ECH
    status.
    
    Provide a workaround in libcurl that checks the inner name used in
    ECH was the peer's hostname, both verify peer and host are disabled
    and then accept the BAD_NAME without failing the connect.
    
    Fixes #20655
    Reported-by: Dexter Gerig
    Closes #20821

    Changed files

    • lib/vtls/openssl.c
  5. Change #260109

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 06 Mar 2026 22:46:37
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 933c34e873d67d25a84805d8c8a86ee7fbf3731d

    Comments

    tool_operate: reset the URL --url-query between --next
    Pointed out by Codex Security
    
    Verify in test 1624
    Closes #20802

    Changed files

    • src/tool_cfgable.h
    • src/tool_operate.c
    • tests/data/Makefile.am
    • tests/data/test1624
  6. Change #260110

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 06 Mar 2026 22:47:30
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision d7e4473806daec96a66758690d1fb01709558756

    Comments

    tool_doswin: avoid memory-leak with CURL_FN_SANITIZE_*
    This is debug-only code
    
    Follow-up to 20900e4a1e3
    
    Found by Codex Security
    
    Closes #20804

    Changed files

    • src/tool_doswin.c
  7. Change #260111

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 06 Mar 2026 22:48:16
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 27c3e0839af9d1b19fb0de6a53b4d0b01167c936

    Comments

    content_encoding: return 'identity' if none other exists
    This fixes a regression and accidental changed behavior shipped in
    8.18.0 (via 6b9c75e219cdcfd3e17e78).
    
    When the setopt is set to "" and curl is built without support for a
    single compression algorithm, it used to use "identity" but recently did
    not.
    
    Spotted by Codex Security
    Closes #20805

    Changed files

    • lib/content_encoding.c
  8. Change #260112

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 06 Mar 2026 22:49:03
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision e49efce12f6ecc84221431cd824518f2dd05de5a

    Comments

    synctime: fix use of uninitialized buffer on non-Windows
    Follow-up to: b714c674f3
    
    Spotted by Codex Security
    Closes #20806

    Changed files

    • docs/examples/synctime.c
  9. Change #260113

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 06 Mar 2026 22:50:29
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision e47b6e657aa5dda6dfb79d495ba3ee7b0534532a

    Comments

    socketpair: clear 'err' when retrying due to EINTR
    If the first write was interrupted by a signal and a subsequent write
    succeeds, the function would still erroneously return EINTR.
    
    Found by Codex Security
    Closes #20809

    Changed files

    • lib/socketpair.c
  10. Change #260114

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Fri 06 Mar 2026 22:52:39
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 5f13a7645e565c5c1a06f3ef86e97afb856fb364

    Comments

    proxy-auth: additional tests
    Also eliminate the special handling for socks proxy match.
    
    Closes #20837

    Changed files

    • lib/url.c
    • tests/http/test_13_proxy_auth.py
    • tests/http/testenv/curl.py
  11. Change #260117

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Fri 06 Mar 2026 22:53:54
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 704e7a85f39e8727876c53c601210258cb52774e

    Comments

    mqtt: fix EOF handling
    In mqtt_recv_atleast(), recognize an EOF as error.
    
    Fixes #20815
    Reported-by: Max Dymond
    Closes #20830

    Changed files

    • lib/mqtt.c
  12. Change #260118

    Category curl
    Changed by Andrei Rybak <rybak.a.vohnoyoudont@gmail.com>
    Changed at Fri 06 Mar 2026 23:01:47
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 86ea3abd41a6d6e38ea3d8ed247ad6cb265fe275

    Comments

    FAQ: syntax improvements
    During conversion of `docs/FAQ` into Markdown, 'man ld' has incorrectly
    kept one of its quotes when it was surrounded by backticks for inline
    code formatting.  A space on the left of it was lost as well.
    
    Fix the formatting in the new `docs/FAQ.md`.
    
    Closes #20812

    Changed files

    • docs/FAQ.md