From a70addadba0be1880bc55f13701034585aa19128 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Thu, 2 Mar 2017 02:55:29 +0300 Subject: Fix possible leaks on exit and asserts about adding non existing zips and directories. --- src/fs/virtfs/virtfs.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'src/fs/virtfs/virtfs.cpp') diff --git a/src/fs/virtfs/virtfs.cpp b/src/fs/virtfs/virtfs.cpp index efa50922a..1069b8f7e 100644 --- a/src/fs/virtfs/virtfs.cpp +++ b/src/fs/virtfs/virtfs.cpp @@ -42,6 +42,7 @@ namespace VirtFs void init(const std::string &restrict name) { VirtFsDir::init(name); + VirtFsZip::init(); updateDirSeparator(); } @@ -155,6 +156,14 @@ namespace VirtFs #endif // UNITTESTS } + bool addDirToSearchPathSilent(const std::string &restrict newDir, + const Append append) + { + return VirtFsDir::addToSearchPathSilent(newDir, + append, + SkipError_false); + } + bool removeDirFromSearchPath(const std::string &restrict oldDir) { #ifdef UNITTESTS @@ -164,6 +173,11 @@ namespace VirtFs #endif // UNITTESTS } + bool removeDirFromSearchPathSilent(const std::string &restrict oldDir) + { + return VirtFsDir::removeFromSearchPathSilent(oldDir); + } + bool addZipToSearchPath(const std::string &restrict newDir, const Append append) { @@ -211,6 +225,7 @@ namespace VirtFs bool deinit() { VirtFsDir::deinit(); + VirtFsZip::deinit(); return true; } -- cgit v1.2.3-60-g2f50