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

Builder ffmpeg-solaris10-i386 Build #13589

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision5c3602abaa50dfe60a3356de5abff73f15df0f99
Got Revision5c3602abaa50dfe60a3356de5abff73f15df0f99
Changes2 changes

BuildSlave:

unstable10x

Reason:

The SingleBranchScheduler scheduler named 'schedule-ffmpeg-solaris10-i386' triggered this build

Steps and Logfiles:

  1. git update ( 5 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 ( 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 13589 Build
codebase Build
got_revision 5c3602abaa50dfe60a3356de5abff73f15df0f99 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 5c3602abaa50dfe60a3356de5abff73f15df0f99 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. David Hampton
  2. bird

Timing:

StartWed Apr 8 22:54:54 2026
EndWed Apr 8 22:55:09 2026
Elapsed14 secs

All Changes:

:

  1. Change #264026

    Category ffmpeg
    Changed by David Hampton <mythtvohnoyoudont@love2code.net>
    Changed at Wed 08 Apr 2026 22:44:16
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision db53fe1ac25dd392be3514dde499545782c7224f

    Comments

    avdevice/alsa.c: Conditionally compile out ESTRPIPE
    NetBSD doesn't have this error code, so put in a test to prevent
    compiling related code on NetBSD systems.

    Changed files

    • libavdevice/alsa.c
  2. Change #264027

    Category ffmpeg
    Changed by bird <6666242+birdohnoyoudont@users.noreply.github.com>
    Changed at Wed 08 Apr 2026 22:52:52
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 5c3602abaa50dfe60a3356de5abff73f15df0f99

    Comments

    avformat/sctp: add size check in sctp_read() matching sctp_write()
    Commit 5b98cea4 added a size < 2 guard to sctp_write() to prevent
    out-of-bounds access when max_streams is enabled, but the identical
    pattern in sctp_read() was not addressed.
    
    When max_streams is non-zero, sctp_read() passes (buf + 2, size - 2)
    to ff_sctp_recvmsg(). If size < 2, size - 2 wraps to a large value
    on the implicit cast to size_t in the callee.
    
    Add the same guard.
    
    Signed-off-by: bird <6666242+bird@users.noreply.github.com>

    Changed files

    • libavformat/sctp.c