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

Builder curl-threaded-solaris11-sparc Build #4603

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

  1. git update ( 10 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 26 mins, 1 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-threaded-solaris11-sparc slave
buildername curl-threaded-solaris11-sparc Builder
buildnumber 4603 Build
codebase Build
got_revision 40b1724f58311a472b195dedd269deb1fd84405e Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 40b1724f58311a472b195dedd269deb1fd84405e Build
scheduler schedule-curl-threaded-solaris11-sparc Scheduler
slavename unstable11s BuildSlave
workdir /export/home/buildbot/slave/curl-threaded-solaris11-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg

Timing:

StartFri Nov 7 11:18:06 2025
EndFri Nov 7 12:41:28 2025
Elapsed1 hrs, 23 mins, 22 secs

All Changes:

:

  1. 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
  2. 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