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

Builder curl-threaded-solaris11-sparc Build #4428

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

  1. git update ( 2 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 27 mins, 52 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 45 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 4428 Build
codebase Build
got_revision cd015c88198f6ebed326c0fd0a28c02b3494a618 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision cd015c88198f6ebed326c0fd0a28c02b3494a618 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. Jay Satiro

Timing:

StartWed Aug 27 08:38:30 2025
EndWed Aug 27 10:04:37 2025
Elapsed1 hrs, 26 mins, 7 secs

All Changes:

:

  1. Change #243988

    Category curl
    Changed by Jay Satiro <raysatiroohnoyoudont@yahoo.com>
    Changed at Wed 27 Aug 2025 08:10:04
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision b9be9f9466665f259696bc8903a239ed8fd793a2

    Comments

    schannel: fix memory leak during handshake
    Follow-up to b6a5f672 which improved the handshake procedure.
    
    Ref: https://github.com/curl/curl/pull/18323
    
    Closes https://github.com/curl/curl/pull/18410

    Changed files

    • lib/vtls/schannel.c
  2. Change #243989

    Category curl
    Changed by Jay Satiro <raysatiroohnoyoudont@yahoo.com>
    Changed at Wed 27 Aug 2025 08:10:05
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision cd015c88198f6ebed326c0fd0a28c02b3494a618

    Comments

    schannel: fix renegotiation
    - Move the schannel_recv renegotiation code to function
      schannel_recv_renegotiate.
    
    - Save the state of a pending renegotiation.
    
    - Pre-empt schannel_recv and schannel_send to continue a pending
      renegotation.
    
    - Partially block during renegotiation if necessary.
    
    Prior to this change, since a1850ad7 (precedes 8.13.0), schannel_recv
    did not properly complete renegotiation before attempting to decrypt
    data. In some cases that could cause an error SEC_E_CONTEXT_EXPIRED.
    Most of the time though DecryptMessage would succeed by chance and
    return SEC_I_RENEGOTIATE which allowed the renegotiation to continue.
    
    Reported-by: stephannn@users.noreply.github.com
    Reported-by: Dustin L. Howett
    
    Fixes https://github.com/curl/curl/issues/18029
    Closes https://github.com/curl/curl/pull/18125

    Changed files

    • lib/vtls/schannel.c
    • lib/vtls/schannel_int.h