Skip to content

Commit

Permalink
Fix use of uninitialized members in AERemap.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Hill committed Sep 6, 2012
1 parent db9a2dd commit 3068f3b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion xbmc/cores/AudioEngine/Utils/AERemap.cpp
Expand Up @@ -29,8 +29,9 @@

using namespace std;

CAERemap::CAERemap()
CAERemap::CAERemap() : m_inChannels(0), m_outChannels(0)
{
memset(m_mixInfo, 0, sizeof(m_mixInfo));
}

CAERemap::~CAERemap()
Expand Down

0 comments on commit 3068f3b

Please sign in to comment.