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

Builder ffmpeg-solaris10-sparc Build #12509

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision4ede75b5f48df5a487ec85da4ec4ca2e16046341
Got Revision4ede75b5f48df5a487ec85da4ec4ca2e16046341
Changes1 change

BuildSlave:

unstable10s

Reason:

The SingleBranchScheduler scheduler named 'schedule-ffmpeg-solaris10-sparc' triggered this build

Steps and Logfiles:

  1. git update ( 6 secs )
    1. stdio
  2. shell 'gsed -i ...' ( 0 secs )
    1. stdio
  3. shell_1 'gsed -i ...' ( 0 secs )
    1. stdio
  4. shell_2 'gsed -i ...' failed ( 0 secs )
    1. stdio
  5. shell_3 './configure --samples="../../../ffmpeg/fate-suite" ...' failed ( 6 secs )
    1. stdio
    2. config.log
  6. shell_4 'gmake fate-rsync' failed ( 0 secs )
    1. stdio
  7. shell_5 '../../../ffmpeg/fate.sh ../../../ffmpeg/fate_config.sh' failed ( 1 secs )
    1. stdio
    2. configure.log
    3. compile.log
    4. test.log

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/ffmpeg-solaris10-sparc slave
buildername ffmpeg-solaris10-sparc Builder
buildnumber 12509 Build
codebase Build
got_revision 4ede75b5f48df5a487ec85da4ec4ca2e16046341 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 4ede75b5f48df5a487ec85da4ec4ca2e16046341 Build
scheduler schedule-ffmpeg-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/ffmpeg-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Niklas Haas

Timing:

StartFri Aug 29 15:32:15 2025
EndFri Aug 29 15:32:31 2025
Elapsed15 secs

All Changes:

:

  1. Change #244087

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Fri 29 Aug 2025 15:22:03
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 4ede75b5f48df5a487ec85da4ec4ca2e16046341

    Comments

    swscale/graph: fix double-free when legacy pass fails initializing
    If this function returns an error after ff_sws_graph_add_pass() has been
    called, and the pass->free callback is therefore already set up to free the
    context, the graph will end up freed twice: once by the pass->free callback
    (during ff_sws_graph_free()), and once before that by failure path of the
    caller (e.g. add_legacy_sws_pass(), or init_legacy_subpass() itself for
    cascaded contexts.)
    
    The solution is to redefine the ownership of SwsGraph to pass clearly from
    the caller of add_legacy_sws_pass() to init_legacy_subpass(), which can then
    deal with appropriately freeing the context conditional on whether or not the
    pass was already registered in the pass list.
    
    Reported-by: 김영민 <kunshim@naver.com>
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libswscale/graph.c