From cb6647f493b8eea9e6351af285ce138a4b67c12d Mon Sep 17 00:00:00 2001 From: Nikolaj Schlej Date: Thu, 30 Oct 2014 05:32:30 +0100 Subject: [PATCH] Unitialized variable spotted by Coveruty Scan --- ffsengine.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/ffsengine.cpp b/ffsengine.cpp index dbd0e23..6c08274 100644 --- a/ffsengine.cpp +++ b/ffsengine.cpp @@ -176,6 +176,7 @@ FfsEngine::FfsEngine(QObject *parent) model = new TreeModel(); oldPeiCoreEntryPoint = 0; newPeiCoreEntryPoint = 0; + dumped = false; } FfsEngine::~FfsEngine(void)