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

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

Results:

Failed

SourceStamp:

Projectcurl/curl
Repositoryhttps://github.com/curl/curl
Branchbagder/conn-close-disconnect
Revisionb75513557473edddb08828c1c438dbf290b7ade8
Changes2 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git updating ( 2 secs )
    1. stdio
    1. - no logs -
    1. - no logs -
  2. Runtest  
    1. - no logs -

Build Properties:

NameValueSource
branch bagder/conn-close-disconnect Build
builddir /export/home/buildbot/slave/curl-pr-unthreaded-solaris10-i386 slave
buildername curl-pr-unthreaded-solaris10-i386 Builder
buildnumber 3593 Build
codebase Build
project curl/curl Build
repository https://github.com/curl/curl Build
revision b75513557473edddb08828c1c438dbf290b7ade8 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:

StartSat Mar 8 01:50:07 2025
EndSat Mar 8 05:29:37 2025
Elapsed3 hrs, 39 mins, 30 secs

All Changes:

:

  1. Change #224158

    Category None
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 07 Mar 2025 09:32:57
    Repository https://github.com/curl/curl
    Project curl/curl
    Branch bagder/conn-close-disconnect
    Revision 88be98f6026a03e8909ba52d23ebb053db12a110

    Comments

    url: call protocol handler's disconnect in Curl_conn_free
    
    For the case when the connection struct is all setup, the protocol
    handler allocates data in its setup_connection function, but the
    connection struct is discarded again before used further because a
    connection reuse is prefered. Then the handler's disconnect function was
    not previously called, which then would lead to a memory leak.
    
    I added test case 698 that reproduces the leak and the fix.
    
    Reported-by: Philippe Antoine

    Changed files

    • lib/url.c
    • tests/data/Makefile.am
    • tests/data/test698
  2. Change #224160

    Category None
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 07 Mar 2025 09:39:26
    Repository https://github.com/curl/curl
    Project curl/curl
    Branch bagder/conn-close-disconnect
    Revision b75513557473edddb08828c1c438dbf290b7ade8

    Comments

    fixup do it first in the function instead

    Changed files

    • lib/url.c