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

Builder ffmpegsos-solaris10-i386 Build #13543

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision51606de0e92867b62abef42509de38181aa25b3e
Got Revision51606de0e92867b62abef42509de38181aa25b3e
Changes2 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 5 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 ( 15 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_sos.sh' failed ( 2 secs )
    1. stdio
    2. configure.log
    3. compile.log
    4. test.log

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/ffmpegsos-solaris10-i386 slave
buildername ffmpegsos-solaris10-i386 Builder
buildnumber 13543 Build
codebase Build
got_revision 51606de0e92867b62abef42509de38181aa25b3e Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 51606de0e92867b62abef42509de38181aa25b3e Build
scheduler schedule-ffmpegsos-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/ffmpegsos-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Gil Portnoy
  2. Ted Meyer

Timing:

StartFri Mar 13 22:14:51 2026
EndFri Mar 13 22:15:17 2026
Elapsed25 secs

All Changes:

:

  1. Change #260992

    Category ffmpeg
    Changed by Ted Meyer <tmathmeyerohnoyoudont@chromium.org>
    Changed at Fri 13 Mar 2026 21:53:12
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 86f53f9ffb779524085ead799b57da87c0c1cf7f

    Comments

    avformat/mov: do not allocate out-of-range buffers
    There's a possibility here with a well-crafted MP4 file containing only
    the nested boxes in order: MOOV.TRAK.MDIA.MINF.STBL.SDTP where the
    header size uses the 64 bit large size, and the ending stdp box has some
    size value >= 0x100000014.
    
    On a 32 bit build of ffmpeg, av_malloc's size parameter drops the high
    order bits of `entries`, and and the allocation is now a controlled size
    that is significantly smaller than `entries`. The following loop will
    then write off the ended of allocated memory with data that follows the
    box fourcc.

    Changed files

    • libavformat/mov.c
  2. Change #260993

    Category ffmpeg
    Changed by Gil Portnoy <dddhkts1ohnoyoudont@gmail.com>
    Changed at Fri 13 Mar 2026 21:59:22
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 51606de0e92867b62abef42509de38181aa25b3e

    Comments

    avcodec/cbs_h266_syntax_template: Fix rows vs columns
    Fixes: out of array access
    Fixes: vvc_poc_cbs_divergence_max.h266
    
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    Changed files

    • libavcodec/cbs_h266_syntax_template.c