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

Builder curl-ares-solaris10-i386 Build #4526

Results:

Failed

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision7f364029b861d064caa128f4a8cb7b34696f7db3
Changes4 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git updating ( 8 secs )
    1. stdio
    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-ares-solaris10-i386 slave
buildername curl-ares-solaris10-i386 Builder
buildnumber 4526 Build
codebase Build
project curl Build
repository https://github.com/curl/curl.git Build
revision 7f364029b861d064caa128f4a8cb7b34696f7db3 Build
scheduler schedule-curl-ares-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/curl-ares-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Joshua Rogers

Timing:

StartFri Sep 18 23:44:08 2026
EndSat Sep 19 09:28:54 2026
Elapsed9 hrs, 44 mins, 46 secs

All Changes:

:

  1. Change #282158

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 18 Sep 2026 22:51:11
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 15bc69a944f29f69c39b08773847525f56310978

    Comments

    strparse: speed up number parsing
    By using a cutoff value for looping simpler while not close to the max.
    
    Runs the numparser test 15-17% faster for me.
    
    Closes #22993

    Changed files

    • lib/curlx/strparse.c
  2. Change #282159

    Category curl
    Changed by Joshua Rogers <MegaManSecohnoyoudont@users.noreply.github.com>
    Changed at Fri 18 Sep 2026 22:53:03
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 7f41af8d5df18d04e95e581d55d650aac8af0654

    Comments

    formdata: reject a negative content length in curl_formadd
    CURLFORM_CONTENTSLENGTH and CURLFORM_CONTENTLEN accepted a negative
    length, which reached forminfo_copyfield() and the mime conversion as a
    near-SIZE_MAX size_t. Return CURL_FORMADD_INCOMPLETE instead.
    
    Closes #22996

    Changed files

    • lib/formdata.c
  3. Change #282160

    Category curl
    Changed by Joshua Rogers <MegaManSecohnoyoudont@users.noreply.github.com>
    Changed at Fri 18 Sep 2026 22:54:21
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 67e631a278fd79045de29f9f0ff65f58cef3a8ca

    Comments

    tool_getparam: do not print the value of a redacted argument
    The Unicode warning printed the full argument, including for ARG_CLEAR
    options such as --user and --oauth2-bearer whose values cleanarg()
    wipes from argv to keep them out of the process list. Print the option
    name instead for those.
    
    Closes #22997

    Changed files

    • src/tool_getparam.c
  4. Change #282161

    Category curl
    Changed by Joshua Rogers <MegaManSecohnoyoudont@users.noreply.github.com>
    Changed at Fri 18 Sep 2026 22:56:40
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 7f364029b861d064caa128f4a8cb7b34696f7db3

    Comments

    ftp: require TLS on the data connection for implicit FTPS
    A bare ftps:// URL leaves CURLOPT_USE_SSL at CURLUSESSL_NONE, so a
    server rejecting PROT P got a cleartext data connection and CURLE_OK.
    Treat an implicit TLS scheme as CURLUSESSL_ALL when deciding the data
    connection protection level, without changing ftp_conn.use_ssl, which
    takes part in connection reuse matching.
    
    Test 1790.
    
    Closes #22995

    Changed files

    • lib/ftp.c
    • tests/data/Makefile.am
    • tests/data/test1790