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

Builder curl-pr-unthreaded-solaris10-i386 Build #3647

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable10x

Reason:

The AnyBranchScheduler scheduler named 'schedule-curl-pr' triggered this build

Steps and Logfiles:

  1. git update ( 8 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 1 hrs, 21 mins, 20 secs )
    1. stdio
    2. resultlog

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-pr-unthreaded-solaris10-i386 slave
buildername curl-pr-unthreaded-solaris10-i386 Builder
buildnumber 3647 Build
codebase Build
got_revision 116f490c81908f09432d45824c9ae62c26a13bd9 Git
osplatform I386 SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl/curl Build
repository https://github.com/curl/curl Build
revision 116f490c81908f09432d45824c9ae62c26a13bd9 Build
scheduler schedule-curl-pr Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/curl-pr-unthreaded-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg

Timing:

StartFri Mar 14 09:21:01 2025
EndFri Mar 14 12:02:48 2025
Elapsed2 hrs, 41 mins, 46 secs

All Changes:

:

  1. Change #224986

    Category None
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 14 Mar 2025 09:09:25
    Repository https://github.com/curl/curl
    Project curl/curl
    Branch master
    Revision 27e07b2943ca4ab3f8e4910466231f822299421d

    Comments

    doh: remove wrong but unreachable exit path from doh_decode_rdata_name
    
    The condition could not happen, as the function is only called from a
    single place where the caller already made sure it can't happen. This
    change still removes the flawed logic.
    
    Reported-by: Ronald Crane
    
    Closes #16710

    Changed files

    • lib/doh.c
  2. Change #224989

    Category None
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 14 Mar 2025 09:11:36
    Repository https://github.com/curl/curl
    Project curl/curl
    Branch master
    Revision 116f490c81908f09432d45824c9ae62c26a13bd9

    Comments

    rustls: cap maximum allowed CRL file size to 8MB
    
    Allowing 4GB on a 32-bit system is just asking for problems and could in
    theory cause integer overflow in the dynbuf code.
    
    The dynbuf now has an assert to catch code trying to set a max larger
    than half SIZE_T_MAX.
    
    Reported-by: Rinku Das
    Closes #16716

    Changed files

    • lib/dynbuf.c
    • lib/dynbuf.h
    • lib/vtls/rustls.c