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

Builder curl-unthreaded-solaris10-i386 Build #16484

Results:

Exception git

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision9820e5dface5739accda14e656d89a7f84642c61
Changes5 changes

BuildSlave:

unstable10x

Reason:

The SingleBranchScheduler scheduler named 'schedule-curl-unthreaded-solaris10-i386' triggered this build

Steps and Logfiles:

  1. git git exception ( 0 secs )
    1. err.text
    2. err.html
    1. - no logs -
    1. - no logs -
  2. Runtest  
    1. - no logs -
    1. - no logs -

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-unthreaded-solaris10-i386 slave
buildername curl-unthreaded-solaris10-i386 Builder
buildnumber 16484 Build
codebase Build
project curl Build
repository https://github.com/curl/curl.git Build
revision 9820e5dface5739accda14e656d89a7f84642c61 Build
scheduler schedule-curl-unthreaded-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/curl-unthreaded-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Viktor Szakats

Timing:

StartMon Mar 23 01:37:16 2026
EndMon Mar 23 06:31:52 2026
Elapsed4 hrs, 54 mins, 36 secs

All Changes:

:

  1. Change #262000

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Sun 22 Mar 2026 18:04:08
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision e9eddedf38078ac92c0028431271cebbc895686e

    Comments

    Revert "md5/md4: enable unaligned access fast path on powerpc64"
    This reverts commit 21fc17b265ca32c8a5a768dc7cd730754a104740.
    
    That was not properly thought through. PowerPC can run in either endian
    and the preprocessor does not know which.
    
    Ref: #20985
    Closes #21058

    Changed files

    • lib/md4.c
    • lib/md5.c
  2. Change #262001

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Sun 22 Mar 2026 18:06:32
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 57a94fec477a3fd4518081d9bf6fd3df1164f6b0

    Comments

    multi.h: add CURLMNWC_CLEAR_ALL
    The two bitmask constants for *CLEAR_DNS and *CLEAR_CONNS were
    duplicates (both set to 1), so they cannot be distinguished and both
    actions fire.
    
    This shipped in public releases since 8.16.0 to and include 8.19.0.
    
    This fix adds CURLMNWC_CLEAR_ALL to be the new 1, and it now implies all
    bits. The DNS and CONNS defines get two new bits (2, 4).
    
    Follow-up to 55c045c86338bfcc1de676c496f
    
    Found by Codex Security
    Closes #20968

    Changed files

    • docs/libcurl/opts/CURLMOPT_NETWORK_CHANGED.md
    • docs/libcurl/symbols-in-versions
    • include/curl/multi.h
    • lib/multi.c
  3. Change #262006

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 22 Mar 2026 19:15:56
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 757fd6aae90265e4e1021a8f82d086186e303bb7

    Comments

    gnutls: fix clang-tidy warning with !verbose
    with
    `-DCURL_DISABLE_VERBOSE_STRINGS=ON -DCURL_USE_GNUTLS=ON -DCURL_CLANG_TIDY=ON`.
    
    ```
    lib/vtls/gtls.c:268:7: error: Value stored to 'strerr' is never read [clang-analyzer-deadcode.DeadStores,-warnings-as-errors]
      268 |       strerr = gnutls_strerror(rc);
          |       ^        ~~~~~~~~~~~~~~~~~~~
    ```
    
    Closes #21060

    Changed files

    • lib/vtls/gtls.c
  4. Change #262007

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 22 Mar 2026 19:15:56
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision e8c64a06c5031bd59fdf914e8ac6c8524c0e4375

    Comments

    asyn-thrdd: fix clang-tidy unused value warning
    with `-DCURL_DISABLE_SOCKETPAIR=ON`.
    
    ```
    lib/asyn-thrdd.c:227:5: error: Value stored to 'do_abort' is never read [clang-analyzer-deadcode.DeadStores,-warnings-as-errors]
      227 |     do_abort = addr_ctx->do_abort;
          |     ^          ~~~~~~~~~~~~~~~~~~
    ```
    
    Closes #21061

    Changed files

    • lib/asyn-thrdd.c
  5. Change #262028

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Sun 22 Mar 2026 23:58:02
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 9820e5dface5739accda14e656d89a7f84642c61

    Comments

    tool_operate: fix memory-leak on failed uploads
    Add test case 1673 to do repeated upload failures and verify there is no
    leak. This proved a previous leak and now it verifies the fix.
    
    Reported-by: James Fuller
    Closes #21062

    Changed files

    • src/tool_operate.c
    • tests/data/Makefile.am
    • tests/data/test1673