[libcamera-devel] [PATCH 1/5] test: timer: Initialise all variables
Kieran Bingham
kieran.bingham at ideasonboard.com
Thu Jan 17 21:31:11 CET 2019
Hi Laurent,
On 17/01/2019 20:30, Laurent Pinchart wrote:
> 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)
Aha, I can fix this before pushing.
>
> Apart from that,
>
> Reviewed-by: Laurent Pinchart <laurent.pinchart at ideasonboard.com>
Thanks.
>
>> {
>> timeout.connect(this, &ManagedTimer::timeoutHandler);
>> }
>
--
Regards
--
Kieran
More information about the libcamera-devel
mailing list