From a5d410e0b39d89e6d1035ca5b2c25f75f236f329 Mon Sep 17 00:00:00 2001
From: Kateryna Kostiuk <kateryna.kostiuk@savoirfairelinux.com>
Date: Fri, 4 Sep 2020 10:48:32 -0400
Subject: [PATCH] audio: fix tone creation on iOS

Add value initialization for tones array, otherwise in iOS
behaviour will be undefined.

Change-Id: I604beda02fc4cdc2e6ade94088fdbc2f7d0b9c25
---
 src/media/audio/sound/tonelist.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/media/audio/sound/tonelist.h b/src/media/audio/sound/tonelist.h
index 02c906eec1..9a1ce1f958 100644
--- a/src/media/audio/sound/tonelist.h
+++ b/src/media/audio/sound/tonelist.h
@@ -60,7 +60,7 @@ private:
     void buildTones(unsigned int sampleRate);
 
     CountryId countryId_;
-    std::array<std::shared_ptr<Tone>, (size_t) Tone::ToneId::TONE_NULL> tones_;
+    std::array<std::shared_ptr<Tone>, (size_t) Tone::ToneId::TONE_NULL> tones_ {};
     Tone::ToneId currentTone_;
 };
 
-- 
GitLab