1
0
mirror of synced 2025-01-18 09:04:52 +01:00

fix: File handles not being closed correctly

This commit is contained in:
WerWolv 2023-05-20 18:07:15 +02:00
parent 9bb3a92e12
commit 11f55a7561
2 changed files with 3 additions and 1 deletions

@ -1 +1 @@
Subproject commit 038a508acec9486b0cc2e9478edaab861a95e112
Subproject commit 7e368abca669c5913d803e997a32aec23f47f3c4

View File

@ -211,6 +211,8 @@ namespace hex::plugin::builtin {
this->m_file.map();
this->m_fileSize = this->m_file.getSize();
this->m_file.close();
return true;
}