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

Builder curl-unthreaded-solaris10-sparc Build #13972

Build In Progress:

[waiting for Lock]

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisionb2476a07128fc1e83a0b322fe6eb9dfa761db53d
Changes3 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 13972 Build
codebase Build
project curl Build
repository https://github.com/curl/curl.git Build
revision b2476a07128fc1e83a0b322fe6eb9dfa761db53d 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

Timing:

StartWed May 13 14:00:45 2026
Elapsed6 hrs, 7 mins, 15 secs

All Changes:

:

  1. Change #266954

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 13 May 2026 09:45:33
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 89f38c168cf5e898d099302b8ed0cec0f82c0415

    Comments

    CURLOPT_MAXFILESIZE: clarify this also works for on-going transfers
    It was not really clear, but it has worked like this since 8.4.0 which
    now is a while.
    
    Closes #21582

    Changed files

    • docs/libcurl/opts/CURLOPT_MAXFILESIZE.md
    • docs/libcurl/opts/CURLOPT_MAXFILESIZE_LARGE.md
  2. Change #266958

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 13 May 2026 10:07:50
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 2238f0921cb00b33958470e30dff6326ea6d5c65

    Comments

    curl: named globs in output file name for upload glob references
    Use parts of text from the upload filename field when that uses globbing
    by giving it a name the same way we do it for URL globs. For example, if
    you upload three files to a HTTP URL and want to save the corresponding
    responses in separate files:
    
        curl -T 'file{<num>1,2,3}' https://upload.example/ -o 'response-#<num>'
    
    Verified by test 2014
    
    Closes #21407

    Changed files

    • docs/cmdline-opts/output.md
    • docs/cmdline-opts/upload-file.md
    • src/tool_operate.c
    • src/tool_urlglob.c
    • src/tool_urlglob.h
    • tests/data/Makefile.am
    • tests/data/test2014
  3. Change #266975

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 13 May 2026 13:12:10
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision b2476a07128fc1e83a0b322fe6eb9dfa761db53d

    Comments

    tool_urlglob: check glob use before access
    As this function can now be invoked with only the second glob "active",
    it must avoid accessing the first one if not in use.
    
    Follow-up to 2238f0921cb00b3395847
    
    Spotted by Codex Security
    
    Closes #21586

    Changed files

    • src/tool_urlglob.c