mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
Fixes two memory leaks, one is pretty bad for OSX.
Yell at pauldachz if this doesn't work. Or... say thanks.
This commit is contained in:
parent
5c4a130688
commit
99cf57eb39
@ -49,6 +49,7 @@ WiiWAD::WiiWAD(const std::string& _rName)
|
||||
if (pReader == NULL || File::IsDirectory(_rName))
|
||||
{
|
||||
m_Valid = false;
|
||||
if(pReader) delete pReader;
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -69,6 +69,7 @@ bool Keyboard::UpdateInput()
|
||||
CGRectMakeWithDictionaryRepresentation(boundsDictionary, &bounds);
|
||||
}
|
||||
|
||||
CFRelease(windowDescriptions);
|
||||
CFRelease(windowArray);
|
||||
|
||||
CGEventRef event = CGEventCreate(nil);
|
||||
|
Loading…
Reference in New Issue
Block a user