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

Builder curl-unthreaded-solaris11-i386 Build #3916

Build In Progress:

ETA: 15:59:57 [46 mins, 19 secs]

Runtest

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisionbb78c45407e9ad5fc1884d3b5fa9a16bde8af3d7
Got Revisionbb78c45407e9ad5fc1884d3b5fa9a16bde8af3d7
Changes4 changes

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

  1. git update ( 2 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( running )
    1. stdio
    2. resultlog
    1. - no logs -

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-unthreaded-solaris11-i386 slave
buildername curl-unthreaded-solaris11-i386 Builder
buildnumber 3916 Build
codebase Build
got_revision bb78c45407e9ad5fc1884d3b5fa9a16bde8af3d7 Git
osplatform I386 SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision bb78c45407e9ad5fc1884d3b5fa9a16bde8af3d7 Build
scheduler schedule-curl-unthreaded-solaris11-i386 Scheduler
slavename unstable11x BuildSlave
workdir /export/home/buildbot/slave/curl-unthreaded-solaris11-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Stefan Eissing

Timing:

StartWed Oct 22 12:58:05 2025
Elapsed2 hrs, 15 mins, 32 secs

All Changes:

:

  1. Change #246385

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 22 Oct 2025 09:55:34
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision f8ba00fe9ddb88827e212a9ebf8dd8293b5a1cb8

    Comments

    RELEASE-NOTES: synced

    Changed files

    • RELEASE-NOTES
  2. Change #246390

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Wed 22 Oct 2025 10:58:21
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 9c313b61b419c8a6c92420f77da67de8d287ff8a

    Comments

    ftp: check errors on remote ip for data connection
    Obtaining the remote ip of the control connection to be used for the
    data connection can fail. Check that and fail the transfer when that
    does not work.
    
    Triggered by an OSS-Fuzz issue.
    Closes #19185

    Changed files

    • lib/ftp.c
  3. Change #246398

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Wed 22 Oct 2025 11:40:00
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision fcae0733a7c55e712955b0f6df24fc8412023e2d

    Comments

    gnutls: fix re-handshake comments
    With GnuTLS, a GNUTLS_E_REHANDSHAKE can be a renegotiate in TLSv1.2 or a
    key update in TLSv1.3. This had been made non-blocking in
    a1850ad7debe33fded6367e34d5c06be4d51f58e but the comment warning about a
    blocking call was not updated.
    
    Closes #19187

    Changed files

    • lib/vtls/gtls.c
  4. Change #246399

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Wed 22 Oct 2025 11:40:47
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision bb78c45407e9ad5fc1884d3b5fa9a16bde8af3d7

    Comments

    vquic: fix recvmsg loop for max_pkts
    The parameter `max_pkts` was not checked in the recvmsg() implementation
    of vquic_recv_packets() as the packter counter was never increased. This
    led to the loop running until an EAGAIN was encountered. Which, in any
    real case scenario, does no harm as long as libcurl is ingesting packets
    faster than a server is able to send them.
    
    However on a slow device and a fast network this could happen and allow
    a denial of serice.
    
    Not a real regression as the vulnerable code has never been released.
    libcurl 8.16.0 does not have this bug.
    
    Closes #19186

    Changed files

    • lib/vquic/vquic.c