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

Builder curl-ares-solaris11-sparc Build #4471

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision8de898414c422ed56980dd4ac3a0125bc6fec5c5
Got Revision8de898414c422ed56980dd4ac3a0125bc6fec5c5
Changes2 changes

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

  1. git update ( 7 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 29 mins, 10 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 0 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-ares-solaris11-sparc slave
buildername curl-ares-solaris11-sparc Builder
buildnumber 4471 Build
codebase Build
got_revision 8de898414c422ed56980dd4ac3a0125bc6fec5c5 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 8de898414c422ed56980dd4ac3a0125bc6fec5c5 Build
scheduler schedule-curl-ares-solaris11-sparc Scheduler
slavename unstable11s BuildSlave
workdir /export/home/buildbot/slave/curl-ares-solaris11-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg

Timing:

StartSat Oct 18 13:19:21 2025
EndSat Oct 18 14:45:47 2025
Elapsed1 hrs, 26 mins, 26 secs

All Changes:

:

  1. Change #246018

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Sat 18 Oct 2025 12:49:53
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision f847d2ed0244319ee6b5e9b054c39077e62388ad

    Comments

    tool_formparse: rewrite the headers file parser
    The -F option allows users to provide a file with a set of headers for a
    specific formpost section. This code used old handcrafted parsing logic
    that potentially could do wrong.
    
    Rewrite to use my_get_line() and dynbuf. Supports longer lines and
    should be more solid parsing code.
    
    Gets somewhat complicated by the (unwise) feature that allows "folding"
    of header lines in the file: if a line starts with a space it should be
    appended to the previous.
    
    The previous code trimmed spurious CR characters wherever they would
    occur in a line but this version does not. It does not seem like
    something we want or that users would expect.
    
    Test 646 uses this feature.
    Closes #19113

    Changed files

    • src/tool_formparse.c
    • tests/data/test646
  2. Change #246019

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Sat 18 Oct 2025 12:54:19
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 8de898414c422ed56980dd4ac3a0125bc6fec5c5

    Comments

    openssl: free UI_METHOD on exit path
    In providercheck(), when failing to open the "store", the exit path
    would not previously free the created UI_METHOD and instead leak this
    resource.
    
    Pointed out by ZeroPath
    
    Closes #19114

    Changed files

    • lib/vtls/openssl.c