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

Builder ffmpeg64-solaris10-sparc Build #12779

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

The SingleBranchScheduler scheduler named 'schedule-ffmpeg64-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 ( 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_64.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-unstable10s/slave/ffmpeg64-solaris10-sparc slave
buildername ffmpeg64-solaris10-sparc Builder
buildnumber 12779 Build
codebase Build
got_revision 041d4f010e9fd73d661b2fc48309dd7f548a1481 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 041d4f010e9fd73d661b2fc48309dd7f548a1481 Build
scheduler schedule-ffmpeg64-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/ffmpeg64-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Oliver Chang

Timing:

StartWed Dec 3 17:47:52 2025
EndWed Dec 3 17:48:11 2025
Elapsed18 secs

All Changes:

:

  1. Change #250826

    Category ffmpeg
    Changed by Oliver Chang <ochangohnoyoudont@google.com>
    Changed at Wed 03 Dec 2025 17:40:02
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 041d4f010e9fd73d661b2fc48309dd7f548a1481

    Comments

    libavcodec/prores_raw: Fix heap-buffer-overflow in decode_frame
    Fixes a heap-buffer-overflow in `decode_frame` where `header_len` read
    from the bitstream was not validated against the remaining bytes in the
    input buffer (`gb`). This allowed `gb_hdr` to be initialized with a size
    exceeding the actual packet data, leading to an out-of-bounds read.
    
    The fix adds a check to ensure `bytestream2_get_bytes_left(&gb)` is
    greater than or equal to `header_len - 2` before initializing `gb_hdr`.
    
    Fixes: https://issues.oss-fuzz.com/issues/439711053

    Changed files

    • libavcodec/prores_raw.c