summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO
diff options
context:
space:
mode:
authorSonicadvance1 <sonicadvance1@gmail.com>2010-03-03 06:59:37 +0000
committerSonicadvance1 <sonicadvance1@gmail.com>2010-03-03 06:59:37 +0000
commitd3923bfc2620eca0a67621349b2e4e358016e09e (patch)
tree6e97c80c54e27f6520c3b4700b20a2c9d377dbb3 /Source/Core/DiscIO
parent6b2d9ef40433e45bde3dada24d3542fa85cd6c9c (diff)
~1KB mem leak fix in NANDContentLoader.cpp
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5152 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DiscIO')
-rw-r--r--Source/Core/DiscIO/Src/NANDContentLoader.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Core/DiscIO/Src/NANDContentLoader.cpp b/Source/Core/DiscIO/Src/NANDContentLoader.cpp
index 4a92b86377..b58f17df2b 100644
--- a/Source/Core/DiscIO/Src/NANDContentLoader.cpp
+++ b/Source/Core/DiscIO/Src/NANDContentLoader.cpp
@@ -267,6 +267,7 @@ bool CNANDContentLoader::CreateFromDirectory(const std::string& _rPath)
}
}
+ delete [] pTMD;
return true;
}