Merge pull request #893 from rohitnirmal/scan-build-fixes

Scan build fixes
This commit is contained in:
shuffle2
2014-09-02 23:15:18 -07:00
4 changed files with 4 additions and 5 deletions

View File

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