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

Builder curl-unthreaded-solaris10-sparc Build #13380

Build In Progress:

[waiting for Lock]

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision9d1acd048c75b24d56d5131cc12f907e37f0bd8f
Changes9 changes

BuildSlave:

unstable10s

Reason:

The SingleBranchScheduler scheduler named 'schedule-curl-unthreaded-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-unthreaded-solaris10-sparc slave
buildername curl-unthreaded-solaris10-sparc Builder
buildnumber 13380 Build
codebase Build
project curl Build
repository https://github.com/curl/curl.git Build
revision 9d1acd048c75b24d56d5131cc12f907e37f0bd8f Build
scheduler schedule-curl-unthreaded-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/curl-unthreaded-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Stefan Eissing
  3. Viktor Szakats
  4. x2018

Timing:

StartFri Nov 7 19:00:20 2025
Elapsed7 hrs, 33 mins, 44 secs

All Changes:

:

  1. Change #247832

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 07 Nov 2025 08:15:42
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 684af00181145e08e6cb287d09ecdf29ee7450ab

    Comments

    setopt: when setting bad protocols, don't store them
    Both CURLOPT_PROTOCOLS_STR and CURLOPT_REDIR_PROTOCOLS_STR would
    previously return error on bad input but would wrongly still store and
    keep the partial (unacceptable) result in the handle.
    
    Closes #19389

    Changed files

    • lib/setopt.c
  2. Change #247870

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 07 Nov 2025 11:09:51
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision a6eaa67c5582155e5d5149b0ff33d11b166ee41a

    Comments

    mbedtls: fix potential use of uninitialized `nread`
    When Curl_conn_cf_recv() returns error, the variable might not be
    assigned and the tracing output may (harmlessly) use it uninitialized.
    
    Also add a comment about the typecast from size_t to int being fine.
    
    Pointed out by ZeroPath
    
    Closes #19393

    Changed files

    • lib/vtls/mbedtls.c
  3. Change #247871

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 07 Nov 2025 11:12:34
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 40b1724f58311a472b195dedd269deb1fd84405e

    Comments

    tool: consider (some) curl_easy_setopt errors fatal
    Instead of happily ignoring return codes.
    
    Calls that allocate data, like duplicating strings, can fail because of
    lack of memory which could then leave the option unset and curl would
    unknowingly continue (if the memory shortage was momentary).
    
    Closes #19385

    Changed files

    • src/config2setopts.c
    • src/tool_findfile.c
    • src/tool_setopt.c
    • src/tool_setopt.h
    • src/tool_ssls.c
  4. Change #247875

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 07 Nov 2025 11:36:25
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision f77c574445532e3c17e624fe4965b8aae4a8c45e

    Comments

    renovate: update ruff less often
    `ruff` seems to be getting a new release every week. Make renovate bump
    it once every month.
    
    Closes #19392

    Changed files

    • renovate.json
  5. Change #247887

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Fri 07 Nov 2025 12:58:26
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 2684af257e7fc4369e4ac1d45b4e303859259677

    Comments

    osslq: code readability
    - remove assertions that are unnecessary
    - lookup stream after assertions
    
    Closes #19394

    Changed files

    • lib/vquic/curl_osslq.c
  6. Change #247888

    Category curl
    Changed by x2018 <xkernel.wangohnoyoudont@foxmail.com>
    Changed at Fri 07 Nov 2025 13:01:39
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 608d96694b392a96e448de266a41fc65607150b9

    Comments

    lib: refactor the type of funcs which have useless return and checks
    Some internal functions always return CURLE_OK.
    
    - Curl_http_proxy_get_destination() does that from bb4032a, (2 years
      ago) And the original inline code does not need to check the status.
    
    - Curl_wildcard_init() does that from e60fe20. (8 years ago)
    
    - Curl_initinfo() does that from a very beginning.
    
    - Curl_pgrsSetDownloadCounter() did not have a return before 914e49b,
      ad051e1 recovered its content (2 years ago) but did not completely
      recovered the changes related to it.
    
    - auth_digest_get_qop_values() does that from 676de7f.
    
    This directly changes their type to void and cleaned the remaining
    checks for their return value.
    
    Closes #19386

    Changed files

    • lib/cf-h2-proxy.c
    • lib/ftplistparser.c
    • lib/ftplistparser.h
    • lib/getinfo.c
    • lib/getinfo.h
    • lib/http_proxy.c
    • lib/http_proxy.h
    • lib/progress.c
    • lib/progress.h
    • lib/sendf.c
    • lib/telnet.c
    • lib/transfer.c
    • lib/vauth/digest.c
  7. Change #247889

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 07 Nov 2025 13:06:28
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 891714acb4b1a9ebff9c6f773c07f9bcd909efef

    Comments

    RELEASE-NOTES: synced

    Changed files

    • RELEASE-NOTES
  8. Change #247905

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 07 Nov 2025 14:12:59
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision d8bad9926ca6ca6def5c09fbcecebcd6c87b68a7

    Comments

    docs: mention umask need when curl creates files
    for cookies, alt-svc and HSTS, command line and library
    
    Closes #19396

    Changed files

    • .github/scripts/pyspelling.words
    • docs/cmdline-opts/alt-svc.md
    • docs/cmdline-opts/cookie-jar.md
    • docs/cmdline-opts/hsts.md
    • docs/libcurl/opts/CURLOPT_ALTSVC.md
    • docs/libcurl/opts/CURLOPT_COOKIEJAR.md
    • docs/libcurl/opts/CURLOPT_HSTS.md
  9. Change #247906

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 07 Nov 2025 14:14:54
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 9d1acd048c75b24d56d5131cc12f907e37f0bd8f

    Comments

    gtls: skip session resumption when verifystatus is set
    Resumed TLS sessions skip OCSP stapled-response verification. Force a
    full handshake so verifystatus() runs.
    
    Follow-up to 4bfd7a961521e1fd6aab7610e931d82a342781
    
    Pointed out by ZeroPath

    Changed files

    • lib/vtls/gtls.c