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

Builder ffmpeg-solaris10-i386 Build #13713

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision8010aa2193f5a354394a36eb7bfb57deaaf81c2e
Got Revision8010aa2193f5a354394a36eb7bfb57deaaf81c2e
Changes5 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 4 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 ( 7 secs )
    1. stdio
    2. config.log
  6. shell_4 'gmake fate-rsync' failed ( 1 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/slave/ffmpeg-solaris10-i386 slave
buildername ffmpeg-solaris10-i386 Builder
buildnumber 13713 Build
codebase Build
got_revision 8010aa2193f5a354394a36eb7bfb57deaaf81c2e Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 8010aa2193f5a354394a36eb7bfb57deaaf81c2e Build
scheduler schedule-ffmpeg-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/ffmpeg-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Flavio Milan
  2. Michael Niedermayer
  3. Niels Provos
  4. depthfirst-dev[bot]

Timing:

StartSun May 3 15:22:43 2026
EndSun May 3 15:22:59 2026
Elapsed15 secs

All Changes:

:

  1. Change #266161

    Category ffmpeg
    Changed by Flavio Milan <oflaviomilanohnoyoudont@gmail.com>
    Changed at Sun 03 May 2026 15:18:54
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision a45a91b23be1c51fd8f948aee51a4d9de92a8d25

    Comments

    avformat/rtmpproto: prevent integer overflow accumulating FLV buffer size
    Fixes: out of array access

    Changed files

    • libavformat/rtmpproto.c
  2. Change #266162

    Category ffmpeg
    Changed by depthfirst-dev[bot] <1012587+depthfirst-dev[bot]ohnoyoudont@users.noreply.github.com>
    Changed at Sun 03 May 2026 15:19:18
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 25a98586cc651bcf0419fcb2453b51ffa8f2fb86

    Comments

    fftools/ffmpeg_opt: validate stream index in negative map handling
    Negative -map processing iterates previously parsed stream map entries
    and dereferences input_files[m->file_index]->ctx->streams[m->stream_index]
    without validating that stream_index is in range.
    
    A malformed earlier map can leave m->stream_index negative, which causes
    an out-of-bounds read when a later negative map walks existing entries.
    Check that stream_index is non-negative and below nb_streams before
    calling stream_specifier_match().
    
    *Vulnerability reported by Zhenpeng (Leo) Lin at depthfirst*
    *Patch validated by Zheng Yu at depthfirst*
    
    Fixes: DFVULN-695

    Changed files

    • fftools/ffmpeg_opt.c
  3. Change #266163

    Category ffmpeg
    Changed by Michael Niedermayer <michaelohnoyoudont@niedermayer.cc>
    Changed at Sun 03 May 2026 15:19:18
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 89e128224e856591f61369fd5afc4989a5d95583

    Comments

    fftools/ffmpeg_opt: fix mismatching negative maps
    Fixes:  -f lavfi -i testsrc2=size=128x128:rate=1:d=1   -filter_complex '[0:v]scale=64:64[vout]'   -map '[vout]'   -map -0:v   -f null -
    Previously  -0:v matched [vout] apparently
    
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    Changed files

    • fftools/ffmpeg_opt.c
  4. Change #266164

    Category ffmpeg
    Changed by Niels Provos <provosohnoyoudont@gmail.com>
    Changed at Sun 03 May 2026 15:19:35
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision fd5023053afb86d3abbc26197aeb38e4dfde20f1

    Comments

    avcodec/hevc/refs: Check multiplication in alloc_frame()
    Fixes: integer overflow on 32bit

    Changed files

    • libavcodec/hevc/refs.c
  5. Change #266165

    Category ffmpeg
    Changed by depthfirst-dev[bot] <1012587+depthfirst-dev[bot]ohnoyoudont@users.noreply.github.com>
    Changed at Sun 03 May 2026 15:19:55
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 8010aa2193f5a354394a36eb7bfb57deaaf81c2e

    Comments

    avformat/rtpdec_mpeg4: reject zero-length AU header sections
    Reject AU header sections with a signaled length of zero in
    rtp_parse_mp4_au().
    
    The AU-headers-length field specifies the length in bits of the AU header
    section that immediately follows. A zero-length section is not useful input
    for this parser and can lead to invalid downstream state, so reject it
    up front together with oversized values.
    
    *Vulnerability reported by Zhenpeng (Leo) Lin at depthfirst*
    *Patch validated by Zheng Yu at depthfirst*
    
    Fixes: OOB read

    Changed files

    • libavformat/rtpdec_mpeg4.c