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

Builder ffmpegsos-solaris10-i386 Build #14159

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revisionf87323a35994ffb833945c6e67029c74629ed704
Got Revisionf87323a35994ffb833945c6e67029c74629ed704
Changes5 changes

BuildSlave:

unstable10x

Reason:

The SingleBranchScheduler scheduler named 'schedule-ffmpegsos-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 ( 8 secs )
    1. stdio
    2. config.log
  6. shell_4 'gmake fate-rsync' failed ( 1 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 14159 Build
codebase Build
got_revision f87323a35994ffb833945c6e67029c74629ed704 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision f87323a35994ffb833945c6e67029c74629ed704 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. Niklas Haas

Timing:

StartTue Jun 23 20:44:29 2026
EndTue Jun 23 20:44:46 2026
Elapsed17 secs

All Changes:

:

  1. Change #272372

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Tue 23 Jun 2026 20:33:00
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 8712114200820ca5280ef73240d5ba860fab4a13

    Comments

    avformat/http: properly re-set s->range_end before requests
    Otherwise this could leak stale values from a previous response.
    
    Sponsored-by: nxtedition AB
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libavformat/http.c
  2. Change #272373

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Tue 23 Jun 2026 20:33:00
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 557ab6f2abe3dba995a66643fb6c200d058b8eea

    Comments

    avformat/http: make short-seek logic more robust
    This avoids an underflow if short_seek is negative (which can happen if e.g.
    ffurl_get_short_seek() returns AVERROR(ENOSYS)), as well as a possible
    underflow if the read position is somehow past `range_end` (e.g. if the HTTP
    server malicously lied about the content range but gave us more bytes anyway)
    
    Sponsored-by: nxtedition AB
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libavformat/http.c
  3. Change #272374

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Tue 23 Jun 2026 20:33:00
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 62006041cc3b4e4a5161711bf38e1020d21cd2f8

    Comments

    avformat/http: don't return EOF unless we actually read all bytes
    Otherwise, this masquerades failure due to I/O as legitimate EOFs.
    
    Sponsored-by: nxtedition AB
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libavformat/http.c
  4. Change #272375

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Tue 23 Jun 2026 20:33:00
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 0d0f9a06ab554c65344329aa6fc73b800f55b351

    Comments

    avformat/http: only re-use old connection if valid
    Otherwise, this might leak stale bytes that were already drained by the
    HTTP soft-seek attempt.
    
    Sponsored-by: nxtedition AB
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libavformat/http.c
  5. Change #272376

    Category ffmpeg
    Changed by Niklas Haas <gitohnoyoudont@haasn.dev>
    Changed at Tue 23 Jun 2026 20:33:00
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision f87323a35994ffb833945c6e67029c74629ed704

    Comments

    avformat/http: properly fall back on soft seek failure
    If the HTTP server still has stale bytes in the TCP receive buffer, but
    the underlying conection was already closed, then the http_open_cnx()
    call might fail even though we successfully drained the previous request.
    
    In this case, there is no proper fallback to a new connection, leading to
    sudden truncation.
    
    Sponsored-by: nxtedition AB
    Signed-off-by: Niklas Haas <git@haasn.dev>

    Changed files

    • libavformat/http.c