aboutsummaryrefslogtreecommitdiffstats
path: root/AudioFile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'AudioFile.cpp')
-rw-r--r--AudioFile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/AudioFile.cpp b/AudioFile.cpp
index 542d0c6..5157b11 100644
--- a/AudioFile.cpp
+++ b/AudioFile.cpp
@@ -19,7 +19,7 @@
template <typename T, typename M>
inline T extractTag(M &map, const char *key)
{
- T ret;
+ T ret = 0;
std::stringstream stream(extractTag<std::string>(map, key));
stream >> ret;
return ret;