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

Builder ffmpeg64-solaris10-sparc Build #13040

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision905a4324030e859a95bbb9901998c55128b7150d
Got Revision905a4324030e859a95bbb9901998c55128b7150d
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 ( 2 secs )
    1. stdio
  7. shell_5 '../../../ffmpeg/fate.sh ../../../ffmpeg/fate_config_64.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-unstable10s/slave/ffmpeg64-solaris10-sparc slave
buildername ffmpeg64-solaris10-sparc Builder
buildnumber 13040 Build
codebase Build
got_revision 905a4324030e859a95bbb9901998c55128b7150d Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 905a4324030e859a95bbb9901998c55128b7150d 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. Ruikai Peng

Timing:

StartSat Jan 24 23:16:21 2026
EndSat Jan 24 23:16:38 2026
Elapsed17 secs

All Changes:

:

  1. Change #256257

    Category ffmpeg
    Changed by Ruikai Peng <ruikaiohnoyoudont@pwno.io>
    Changed at Sat 24 Jan 2026 23:05:34
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 905a4324030e859a95bbb9901998c55128b7150d

    Comments

    libavfilter/showcwt: fix OOB write for DU/RL position init
    In config_output() for direction=DU/RL, the position
    is initialized to s->sono_size, which equals h or w
    when bar=0. That position is later used as an
    in-bounds pixel coordinate without clamping in draw(),
    causing writes past the end of the output planes.
    
    Repro:
    ffmpeg -f lavfi -i sine=frequency=1000:sample_rate=44100 \
      -filter_complex "[0:a]showcwt=s=640x512:bar=0:direction=du[v]" \
      -map "[v]" -frames:v 1 -f null -
    
    AddressSanitizer: heap-buffer-overflow ... WRITE of size 1
    
    Initialize and wrap the DU/RL position to sono_size - 1
    (or 0 when empty), preventing out-of-bounds row/column
    writes when bar=0 while preserving existing slide behavior.

    Changed files

    • libavfilter/avf_showcwt.c