Skip to content

Commit

Permalink
Prevent using uninitialized variables on Win32
Browse files Browse the repository at this point in the history
  • Loading branch information
Karlson2k committed Jul 18, 2012
1 parent 290b3af commit 6ba8a03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/utils/CPUInfo.cpp
Expand Up @@ -238,8 +238,8 @@ CCPUInfo::CCPUInfo(void)
m_cpuModel = "Unknown";
}

readProcStat(m_userTicks, m_niceTicks, m_systemTicks, m_idleTicks, m_ioTicks);
#endif
readProcStat(m_userTicks, m_niceTicks, m_systemTicks, m_idleTicks, m_ioTicks);

ReadCPUFeatures();

Expand Down

0 comments on commit 6ba8a03

Please sign in to comment.