mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-10 14:39:01 +01:00
WiiWad: Use correct form of delete for arrays
This commit is contained in:
parent
0e39b8d9e7
commit
383b104af0
@ -49,11 +49,11 @@ WiiWAD::~WiiWAD()
|
|||||||
{
|
{
|
||||||
if (m_Valid)
|
if (m_Valid)
|
||||||
{
|
{
|
||||||
delete m_pCertificateChain;
|
delete[] m_pCertificateChain;
|
||||||
delete m_pTicket;
|
delete[] m_pTicket;
|
||||||
delete m_pTMD;
|
delete[] m_pTMD;
|
||||||
delete m_pDataApp;
|
delete[] m_pDataApp;
|
||||||
delete m_pFooter;
|
delete[] m_pFooter;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user