DIRECTOR: fix unitialized scalar field

Initialize _nextFrame and _nextFrame counter in the debugger.

Fixes COVERITY: 1498346
This commit is contained in:
Roland van Laar 2022-09-26 11:14:50 +02:00
parent 4affcaa1c6
commit 00e8feaaa7

View File

@ -77,6 +77,8 @@ Debugger::Debugger(): GUI::Debugger() {
_finishCounter = 0;
_next = false;
_nextCounter = 0;
_nextFrame = false;
_nextFrameCounter = 0;
}
Debugger::~Debugger() {