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

Builder ffmpeg64-solaris10-i386 Build #14115

Results:

Failed

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision61cabd62cbf0d240620ef7caa382d665268e61b4
Changes1 change

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git updating ( 6 secs )
    1. stdio
  2. shell  
    1. - no logs -
  3. shell_1  
    1. - no logs -
  4. shell_2  
    1. - no logs -
  5. shell_3  
    1. - no logs -
  6. shell_4  
    1. - no logs -
  7. shell_5  
    1. - no logs -

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/ffmpeg64-solaris10-i386 slave
buildername ffmpeg64-solaris10-i386 Builder
buildnumber 14115 Build
codebase Build
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 61cabd62cbf0d240620ef7caa382d665268e61b4 Build
scheduler schedule-ffmpeg64-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/ffmpeg64-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Khalil Elemam

Timing:

StartSat Sep 12 07:54:06 2026
EndSat Sep 12 07:54:12 2026
Elapsed6 secs

All Changes:

:

  1. Change #281561

    Category ffmpeg
    Changed by Khalil Elemam <khalil.l.elemamohnoyoudont@gmail.com>
    Changed at Sat 12 Sep 2026 09:27:42
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 61cabd62cbf0d240620ef7caa382d665268e61b4

    Comments

    ff_mkdir_p: skip Windows drive letter to avoid spurious EACCES
    ff_mkdir_p walks the path and calls mkdir() on each prefix component,
    including the bare drive letter (e.g. "C:"). On Windows, "C:" is a
    drive-relative path that resolves to the process's saved current directory
    on that drive. When the process CWD is on a different drive, "C:" resolves
    to the drive root (C:\), and mkdir on the root returns EACCES.
    
    This causes spurious "Permission denied" errors when creating output
    directories (e.g. HLS segments) on a drive different from the process
    working directory.
    
    Fix: skip the drive letter (X:) and the following separator(s) before
    the component walk, so the first mkdir targets an absolute path.
    
    Fixes #24263

    Changed files

    • libavformat/utils.c