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

Builder ffmpeg64-solaris10-i386 Build #13572

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revisione43aab67ed00e7aa66e8e4eb4f0f57e8a6b2d11e
Got Revisione43aab67ed00e7aa66e8e4eb4f0f57e8a6b2d11e
Changes3 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 4 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 ( 11 secs )
    1. stdio
    2. config.log
  6. shell_4 'gmake fate-rsync' failed ( 3 secs )
    1. stdio
  7. shell_5 '../../../ffmpeg/fate.sh ../../../ffmpeg/fate_config_64.sh' failed ( 2 secs )
    1. stdio
    2. configure.log
    3. compile.log
    4. test.log

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/ffmpeg64-solaris10-i386 slave
buildername ffmpeg64-solaris10-i386 Builder
buildnumber 13572 Build
codebase Build
got_revision e43aab67ed00e7aa66e8e4eb4f0f57e8a6b2d11e Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision e43aab67ed00e7aa66e8e4eb4f0f57e8a6b2d11e 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. Alexandru Ardelean

Timing:

StartFri Apr 10 18:05:04 2026
EndFri Apr 10 18:05:26 2026
Elapsed22 secs

All Changes:

:

  1. Change #264176

    Category ffmpeg
    Changed by Alexandru Ardelean <aardeleanohnoyoudont@deviqon.com>
    Changed at Fri 10 Apr 2026 18:02:28
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 24adcf3a72d88e1b38360678e3331eeb6de6849c

    Comments

    avdevice/v4l2: fix potential memleak when allocating device buffers
    In the loop which allocates the buffers for a V4L2 device, if failure
    occurs for a certain buffer (e.g. 3rd of 4 buffers), then the previously
    allocated buffers (and the buffer array) would not be free'd in
    the mmap_init(). This would cause a leak.
    
    This change handles the error cases of that loop to free all allocated
    resources, so that when mmap_init() fails nothing is leaked.
    
    Signed-off-by: Alexandru Ardelean <aardelean@deviqon.com>

    Changed files

    • libavdevice/v4l2.c
  2. Change #264177

    Category ffmpeg
    Changed by Alexandru Ardelean <aardeleanohnoyoudont@deviqon.com>
    Changed at Fri 10 Apr 2026 18:02:28
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 1011e4d647aacfdfb6b0fff827e77b24d81218b6

    Comments

    avdevice/v4l2: wrap buf_start and buf_len into a struct
    This reduces the number of malloc() & free() calls, and structures the
    data for the buffers a bit neatly.
    In case more per-buffer data needs to be added, having a separate struct
    is useful.
    
    Signed-off-by: Alexandru Ardelean <aardelean@deviqon.com>

    Changed files

    • libavdevice/v4l2.c
  3. Change #264178

    Category ffmpeg
    Changed by Alexandru Ardelean <aardeleanohnoyoudont@deviqon.com>
    Changed at Fri 10 Apr 2026 18:02:28
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision e43aab67ed00e7aa66e8e4eb4f0f57e8a6b2d11e

    Comments

    avdevice/v4l2: rename 'buff_data' -> 'buf_desc'
    Since we've added a 'buf_data' struct, rename this to avoid any confusion
    about this one.
    
    Signed-off-by: Alexandru Ardelean <aardelean@deviqon.com>

    Changed files

    • libavdevice/v4l2.c