From 478a4032da69654245d478e15902feda1e49c84c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= Date: Fri, 29 Apr 2016 20:11:50 +0100 Subject: [PATCH] coverity#1358844 Uninitialized pointer field Change-Id: I66f34570c49f647cb1fd7775ef263e5e720d8064 --- opencl/inc/opencl_device_selection.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/opencl/inc/opencl_device_selection.h b/opencl/inc/opencl_device_selection.h index 6ec506dd0314..e2bda73af8f3 100644 --- a/opencl/inc/opencl_device_selection.h +++ b/opencl/inc/opencl_device_selection.h @@ -326,6 +326,9 @@ private: public: XmlWalker() + : mpDocPtr(nullptr) + , mpRoot(nullptr) + , mpCurrent(nullptr) {} ~XmlWalker()