mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 22:29:21 +00:00
WiiWad: Use correct form of delete for arrays
This commit is contained in:
parent
0e39b8d9e7
commit
383b104af0
1 changed files with 5 additions and 5 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue