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

Builder curl-threaded-solaris11-i386 Build #3967

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

  1. git update ( 12 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 56 mins, 25 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-i386 slave
buildername curl-threaded-solaris11-i386 Builder
buildnumber 3967 Build
codebase Build
got_revision c5de083bcc92e8edecbb4214b0ca5107496a80f6 Git
osplatform I386 SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision c5de083bcc92e8edecbb4214b0ca5107496a80f6 Build
scheduler schedule-curl-threaded-solaris11-i386 Scheduler
slavename unstable11x BuildSlave
workdir /export/home/buildbot/slave/curl-threaded-solaris11-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg

Timing:

StartThu Oct 30 15:48:08 2025
EndThu Oct 30 17:53:37 2025
Elapsed2 hrs, 5 mins, 29 secs

All Changes:

:

  1. Change #247114

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Thu 30 Oct 2025 15:40:21
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 80258309b26546e27837432b0121f4e65e74b030

    Comments

    lib: reduce memcpy calls
    socks_gssapi: the malloc + memcpy was superflous and can be skipped
    
    cleartext: avoid malloc + three memcpy with aprintf()
    
    digest_sspi: use memdup0 instead of malloc + memcpy
    
    vtls: use memdup0 instead of malloc + memcpy
    
    Closes #19282

    Changed files

    • lib/socks_gssapi.c
    • lib/vauth/cleartext.c
    • lib/vauth/digest_sspi.c
    • lib/vtls/vtls.c
  2. Change #247115

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Thu 30 Oct 2025 15:41:28
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision c5de083bcc92e8edecbb4214b0ca5107496a80f6

    Comments

    base64: make base64_encode() error on too long input
    The maximum size is set to 16MB.
    
    It should not possible to call this function with this large input, but
    this is a precaution to catch mistakes and replaces the earlier check on
    architectures with small size_t.
    
    Closes #19280

    Changed files

    • lib/curlx/base64.c
    • lib/curlx/base64.h