COMMON: Initialize EventDispatcher::_autoFreeMapper.

This fixes a branching on uninitialized variable reported by valgrind on
startup.
This commit is contained in:
Johannes Schickel 2013-07-05 01:44:15 +02:00
parent 16748f1341
commit 71b031be12

View File

@ -24,7 +24,7 @@
namespace Common {
EventDispatcher::EventDispatcher() : _mapper(0) {
EventDispatcher::EventDispatcher() : _autoFreeMapper(false), _mapper(0) {
}
EventDispatcher::~EventDispatcher() {