aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei <bunneidev@gmail.com>2014-11-15 01:08:00 -0500
committerGravatar bunnei <bunneidev@gmail.com>2014-11-17 22:19:14 -0500
commit11641b5e7913a90d2428d7a3ad04b9963e9fa278 (patch)
treef1a933079afdfea73e76a187441733642489e2b0 /src
parentbcb0dbf7e168f383e8be2971fc0362668ca08afe (diff)
Archive: Fixed to not destroy archive handle on close.
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/kernel/archive.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/kernel/archive.cpp b/src/core/hle/kernel/archive.cpp
index ece4cd73..8f1c95d0 100644
--- a/src/core/hle/kernel/archive.cpp
+++ b/src/core/hle/kernel/archive.cpp
@@ -100,7 +100,6 @@ public:
{
DEBUG_LOG(KERNEL, "Close %s %s", GetTypeName().c_str(), GetName().c_str());
CloseArchive(backend->GetIdCode());
- Kernel::g_object_pool.Destroy<Archive>(GetHandle());
break;
}
// Unknown command...
@@ -304,8 +303,9 @@ Handle OpenArchive(FileSys::Archive::IdCode id_code) {
* @return Result of operation, 0 on success, otherwise error code
*/
Result CloseArchive(FileSys::Archive::IdCode id_code) {
- if (1 != g_archive_map.erase(id_code)) {
- ERROR_LOG(KERNEL, "Cannot close archive %d", (int) id_code);
+ auto itr = g_archive_map.find(id_code);
+ if (itr == g_archive_map.end()) {
+ ERROR_LOG(KERNEL, "Cannot close archive %d, does not exist!", (int)id_code);
return -1;
}