[apps] Fix jumps depending on uninitialized data

Change-Id: If3fc02a365fbf77ce9daecf6c60c4ba5a079d7c3
This commit is contained in:
Romain Goyet
2017-05-08 20:21:47 +02:00
parent 4da1d07f3e
commit f07f70118b
2 changed files with 4 additions and 1 deletions

View File

@@ -7,7 +7,8 @@
namespace Shared {
FloatPairStore::FloatPairStore() :
m_numberOfPairs(0)
m_numberOfPairs(0),
m_data{}
{
}