Initialize variables to silence garbage return warning from scan-build.

This commit is contained in:
Rohit Nirmal 2014-08-27 20:35:20 -05:00
commit 9e340b1c81
3 changed files with 3 additions and 3 deletions

View file

@ -157,7 +157,7 @@ u64 CVolumeGC::GetRawSize() const
bool CVolumeGC::IsDiscTwo() const
{
bool discTwo;
bool discTwo = false;
Read(6,1, (u8*) &discTwo);
return discTwo;
}