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

Builder ffmpegsos-solaris10-sparc Build #13820

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 7 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 ( 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/ffmpegsos-solaris10-sparc slave
buildername ffmpegsos-solaris10-sparc Builder
buildnumber 13820 Build
codebase Build
got_revision 87f6fa9d41e4a31faeabd355a9c2365c6bb9465f Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 87f6fa9d41e4a31faeabd355a9c2365c6bb9465f Build
scheduler schedule-ffmpegsos-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/ffmpegsos-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Haochen Chen

Timing:

StartThu Aug 13 21:14:06 2026
EndThu Aug 13 21:14:24 2026
Elapsed18 secs

All Changes:

:

  1. Change #278119

    Category ffmpeg
    Changed by Haochen Chen <haochencohnoyoudont@google.com>
    Changed at Thu 13 Aug 2026 22:46:10
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 87f6fa9d41e4a31faeabd355a9c2365c6bb9465f

    Comments

    avcodec/bmp: fix misaligned read in 16-bit decoding
    Fixes a misaligned read in bmp_decode_frame when decoding 16-bit BMPs.
    The code was casting a potentially unaligned uint8_t pointer to uint16_t* and dereferencing it.
    This triggers a UBSAN trap (SIGILL / UD1) on environments configured to trap on undefined behavior.
    Replaced with AV_RL16 to perform safe unaligned reads.
    
    Signed-off-by: Haochen Chen <haochenc@google.com>

    Changed files

    • libavcodec/bmp.c