[libcamera-devel] [PATCH 2/2] libcamera: v4l2_videodevice: Clear cache_ in ~V4L2BufferCache()

Kieran Bingham kieran.bingham at ideasonboard.com
Fri Jul 9 16:20:40 CEST 2021


Hi Umang,

On 09/07/2021 12:47, Umang Jain wrote:
> This shall help release any taken reference, just in case.
> 
> Signed-off-by: Umang Jain <umang.jain at ideasonboard.com>
> ---
>  src/libcamera/v4l2_videodevice.cpp | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/src/libcamera/v4l2_videodevice.cpp b/src/libcamera/v4l2_videodevice.cpp
> index da2af6a1..1e33571c 100644
> --- a/src/libcamera/v4l2_videodevice.cpp
> +++ b/src/libcamera/v4l2_videodevice.cpp
> @@ -190,6 +190,8 @@ V4L2BufferCache::~V4L2BufferCache()
>  {
>  	if (missCounter_ > cache_.size())
>  		LOG(V4L2, Debug) << "Cache misses: " << missCounter_;
> +
> +	cache_.clear();

This isn't needed as far as I'm aware.

cache_ is a vector<Entry> so upon destructor, the destructors of all the
elements contained with in it are called, before the memory is freed:

  https://en.cppreference.com/w/cpp/container/vector/~vector

--
Kieran

>  }
>  
>  /**
> 


More information about the libcamera-devel mailing list