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

Builder ffmpegsos-solaris10-i386 Build #13668

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10x

Reason:

The SingleBranchScheduler scheduler named 'schedule-ffmpegsos-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 ( 8 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 ( 0 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 13668 Build
codebase Build
got_revision 65eed0732cadc42b3689788f175d921974f9c074 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 65eed0732cadc42b3689788f175d921974f9c074 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. Sankalpa Sarkar

Timing:

StartThu Apr 2 21:14:50 2026
EndThu Apr 2 21:15:07 2026
Elapsed16 secs

All Changes:

:

  1. Change #263337

    Category ffmpeg
    Changed by Sankalpa Sarkar <sankalpasarkar68ohnoyoudont@gmail.com>
    Changed at Thu 02 Apr 2026 21:06:59
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 65eed0732cadc42b3689788f175d921974f9c074

    Comments

    avformat: check avio_read() return values in dss/dtshd/mlv
    Multiple demuxers call avio_read() without checking its return
    value. When input is truncated, destination buffers remain
    uninitialized but are still used for offset calculations, memcmp,
    and metadata handling. This results in undefined behavior
    (detectable with Valgrind/MSan).
    
    Fix this by checking the return value of avio_read() in:
    - dss.c: dss_read_seek() — check before using header buffer
    - dtshddec.c: FILEINFO chunk — check before using value buffer
    - mlvdec.c: check_file_header() — check before memcmp on version
    
    Fixes: #21520

    Changed files

    • libavformat/dss.c
    • libavformat/dtshddec.c
    • libavformat/mlvdec.c