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

Builder curl-ares-solaris11-sparc Build #5349

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisionba685ad5e5712fed4c3772df0372569b4e5ff428
Got Revisionba685ad5e5712fed4c3772df0372569b4e5ff428
Changes1 change

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Viktor Szakats

Timing:

StartTue Feb 24 12:47:12 2026
EndTue Feb 24 13:48:02 2026
Elapsed1 hrs, 49 secs

All Changes:

:

  1. Change #258826

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 24 Feb 2026 12:34:19
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision ba685ad5e5712fed4c3772df0372569b4e5ff428

    Comments

    openssl: fix potential NULL dereference when loading certs (Windows)
    This could happen if the first cert to be loaded missed EKU (Enhanced
    Key Usage) data, when using native CA on Windows.
    
    Fix by skipping certs without Enhanced Key Usage data.
    
    Detected by clang-tidy:
    ```
    lib/vtls/openssl.c:2922:15: warning: Access to field 'cUsageIdentifier'
     results in a dereference of a null pointer (loaded from variable
     'enhkey_usage') [clang-analyzer-core.NullDereference]
     2922 |           if(!enhkey_usage->cUsageIdentifier) {
          |               ^
    ```
    
    Refs:
    https://learn.microsoft.com/windows/win32/secgloss/e-gly
    https://learn.microsoft.com/windows/win32/api/wincrypt/nf-wincrypt-certgetenhancedkeyusage
    https://gitlab.winehq.org/wine/wine/-/blob/wine-11.2/dlls/crypt32/cert.c?ref_type=tags#L3061-3164
    
    Assisted-by: Stefan Eissing
    
    Closes #20634

    Changed files

    • lib/vtls/openssl.c