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

Builder curl-unthreaded-solaris10-i386 Build #14511

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisionfe226af174b3a0c4303a9e1cdc07a5bacfa0a68a
Got Revisionfe226af174b3a0c4303a9e1cdc07a5bacfa0a68a
Changes3 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 2 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 24 mins, 35 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 16 secs )
    1. stdio

Build Properties:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg

Timing:

StartFri Apr 19 13:43:02 2024
EndFri Apr 19 15:11:27 2024
Elapsed1 hrs, 28 mins, 24 secs

All Changes:

:

  1. Change #195607

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 19 Apr 2024 13:30:09
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 123d3ef5dbdc3755999e6a71dd1b79e5877b82c4

    Comments

    mqtt: when Curl_xfer_recv returns error, don't use nread
    A returned error code makes other return value unreliable, and in this
    case potentially uninitialized. On error, do not read other return
    values like the nread counter.
    
    Spotted by CodeSonar
    
    Closes #13418

    Changed files

    • lib/mqtt.c
  2. Change #195608

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 19 Apr 2024 13:34:00
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision a032e97f2b1070497c0f8c8972bc892e70686838

    Comments

    http: reject HTTP major version switch mid connection
    A connection that has seen an HTTP major version now refuses any other
    major HTTP version in future responses. Previously, a HTTP/1.x
    connection would just silently accept HTTP/2 or HTTP/3 in the status
    lines as long as it had support for those built-in. It would then just
    lead to confusion and badness.
    
    Indirectly Spotted by CodeSonar which identified a duplicate assignment
    in this function.
    
    Add test 471 to verify
    
    Closes #13421

    Changed files

    • lib/http.c
    • tests/data/Makefile.inc
    • tests/data/test471
  3. Change #195609

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 19 Apr 2024 13:35:54
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision fe226af174b3a0c4303a9e1cdc07a5bacfa0a68a

    Comments

    Curl_creader_read: init two variables to avoid using them uninited
    Spotted by CodeSonar
    
    Closes #13419

    Changed files

    • lib/sendf.c