[libcamera-devel] [PATCH 1/5] test: timer: Initialise all variables

Laurent Pinchart laurent.pinchart at ideasonboard.com
Thu Jan 17 21:30:08 CET 2019


Hi Kieran,

Thank you for the patch.

On Thu, Jan 17, 2019 at 08:20:39PM +0000, Kieran Bingham wrote:
> The ManagedTimer does not initialise the integer 'interval_' variable.
> 
> This is set before used, and should not break - but for completeness
> (and to cover static analysers) initialise the variable in the
> initialiser list.
> 
> Fixes: 034ea868027d ("test: Add timer test")
> Signed-off-by: Kieran Bingham <kieran.bingham at ideasonboard.com>
> ---
>  test/timer.cpp | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/test/timer.cpp b/test/timer.cpp
> index 6a3cda70bef4..3d1a78ac2768 100644
> --- a/test/timer.cpp
> +++ b/test/timer.cpp
> @@ -19,7 +19,8 @@ using namespace libcamera;
>  class ManagedTimer : public Timer
>  {
>  public:
> -	ManagedTimer() : Timer()
> +	ManagedTimer() :
> +		Timer(), interval_(0)

Nitpicking, this should read

	ManagedTimer()
		: Timer(), interval_(0)

Apart from that,

Reviewed-by: Laurent Pinchart <laurent.pinchart at ideasonboard.com>

>  	{
>  		timeout.connect(this, &ManagedTimer::timeoutHandler);
>  	}

-- 
Regards,

Laurent Pinchart


More information about the libcamera-devel mailing list