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

Builder ffmpeg-solaris10-i386 Build #13751

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10x

Reason:

The SingleBranchScheduler scheduler named 'schedule-ffmpeg-solaris10-i386' 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 ( 12 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.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/ffmpeg-solaris10-i386 slave
buildername ffmpeg-solaris10-i386 Builder
buildnumber 13751 Build
codebase Build
got_revision 18761f9fb55c697243acd41689fbee6a6d6f13ca Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 18761f9fb55c697243acd41689fbee6a6d6f13ca 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. Marvin Scholz

Timing:

StartTue May 12 16:12:42 2026
EndTue May 12 16:13:02 2026
Elapsed20 secs

All Changes:

:

  1. Change #266872

    Category ffmpeg
    Changed by Marvin Scholz <epirat07ohnoyoudont@gmail.com>
    Changed at Tue 12 May 2026 16:02:51
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 18761f9fb55c697243acd41689fbee6a6d6f13ca

    Comments

    avformat/rtpdec_av1: fix buffer overflow due to variable confusion
    The pktpos denotes the position in the output packet buffer, while
    buf_ptr is the position in the input buffer. As this payload is ignored,
    nothing is written to the output packet so increasing the pktpos does
    not make sense here, instead the buf_ptr has to be increased to advance
    the input buffer to the correct position after this OBU.
    
    This incorrect increment here could result in pktpos exceeding the whole
    size of the output packet and the later call to memcpy to write to that
    buffer would start its write way past the end of the packet buffer.
    
    Fix #22812
    
    Reported-By: fre3dm4n

    Changed files

    • libavformat/rtpdec_av1.c