From 122892d1bccf0495579918a4fcdf74a793e9fb36 Mon Sep 17 00:00:00 2001 From: Kieran Bingham Date: Tue, 10 Sep 2019 09:48:35 +0100 Subject: test: process: Initialise member variables The ProcessTest() declares member variables but leaves them unitialised. Set them appropriately from the constructor. Reviewed-by: Laurent Pinchart Signed-off-by: Kieran Bingham --- test/process/process_test.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'test/process') diff --git a/test/process/process_test.cpp b/test/process/process_test.cpp index 701f156b..f3cabe0a 100644 --- a/test/process/process_test.cpp +++ b/test/process/process_test.cpp @@ -35,6 +35,7 @@ class ProcessTest : public Test { public: ProcessTest() + : exitStatus_(Process::NotExited), exitCode_(-1) { } -- cgit v1.2.1