1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-19 23:23:52 +00:00

Memory leak fixed. Proper file names in headers.

This commit is contained in:
Azdul 2019-01-17 07:08:25 +01:00
parent c6fd979c42
commit b9a7514278
3 changed files with 3 additions and 3 deletions

View file

@ -4,7 +4,7 @@
Email: < korslund@gmail.com > Email: < korslund@gmail.com >
WWW: http://openmw.sourceforge.net/ WWW: http://openmw.sourceforge.net/
This file (memorystream.h) is part of the OpenMW package. This file (memorystream.hpp) is part of the OpenMW package.
OpenMW is distributed as free software: you can redistribute it OpenMW is distributed as free software: you can redistribute it
and/or modify it under the terms of the GNU General Public License and/or modify it under the terms of the GNU General Public License

View file

@ -4,7 +4,7 @@
Email: < korslund@gmail.com > Email: < korslund@gmail.com >
WWW: http://openmw.sourceforge.net/ WWW: http://openmw.sourceforge.net/
This file (tes4bsa_file.h) is part of the OpenMW package. This file (tes4bsa_file.hpp) is part of the OpenMW package.
OpenMW is distributed as free software: you can redistribute it OpenMW is distributed as free software: you can redistribute it
and/or modify it under the terms of the GNU General Public License and/or modify it under the terms of the GNU General Public License

View file

@ -7,7 +7,7 @@ namespace VFS
BsaArchive::BsaArchive(const std::string &filename) BsaArchive::BsaArchive(const std::string &filename)
{ {
mFile = new Bsa::BSAFile(); mFile = nullptr;
Bsa::BsaVersion bsaVersion = Bsa::TES4BSAFile::detectVersion(filename); Bsa::BsaVersion bsaVersion = Bsa::TES4BSAFile::detectVersion(filename);