X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/49178e6501de6fb67747453a36144998ae976f03..de9a407728e5f47ed416365da9c07798ad0b0b26:/src/common/fs_zip.cpp diff --git a/src/common/fs_zip.cpp b/src/common/fs_zip.cpp index c9a379ce13..225159473b 100644 --- a/src/common/fs_zip.cpp +++ b/src/common/fs_zip.cpp @@ -71,13 +71,17 @@ wxZipFSHandler::wxZipFSHandler() : wxFileSystemHandler() wxZipFSHandler::~wxZipFSHandler() { - if (m_Archive) - delete m_Archive; - if (m_DirsFound) - delete m_DirsFound; + Cleanup(); } +void wxZipFSHandler::Cleanup() +{ + wxDELETE(m_Archive); + wxDELETE(m_DirsFound); +} + + bool wxZipFSHandler::CanOpen(const wxString& location) { @@ -86,7 +90,7 @@ bool wxZipFSHandler::CanOpen(const wxString& location) } -wxFSFile* wxZipFSHandler::OpenFile(wxFileSystem& fs, const wxString& location) +wxFSFile* wxZipFSHandler::OpenFile(wxFileSystem& WXUNUSED(fs), const wxString& location) { wxString right = GetRightLocation(location); wxString left = GetLeftLocation(location); @@ -102,7 +106,8 @@ wxFSFile* wxZipFSHandler::OpenFile(wxFileSystem& fs, const wxString& location) if (right.GetChar(0) == wxT('/')) right = right.Mid(1); - wxFSFile *leftFile = fs.OpenFile(left); + // a new wxFileSystem object is needed here to avoid infinite recursion + wxFSFile *leftFile = wxFileSystem().OpenFile(left); if (!leftFile) return NULL; @@ -141,7 +146,7 @@ wxString wxZipFSHandler::FindFirst(const wxString& spec, int flags) wxString right = GetRightLocation(spec); wxString left = GetLeftLocation(spec); - if (right.Last() == wxT('/')) right.RemoveLast(); + if (!right.empty() && right.Last() == wxT('/')) right.RemoveLast(); if (m_Archive) { @@ -167,6 +172,8 @@ wxString wxZipFSHandler::FindFirst(const wxString& spec, int flags) m_Pattern = right.AfterLast(wxT('/')); m_BaseDir = right.BeforeLast(wxT('/')); + if (m_BaseDir.StartsWith(wxT("/"))) + m_BaseDir = m_BaseDir.Mid(1); if (m_Archive) { @@ -174,6 +181,8 @@ wxString wxZipFSHandler::FindFirst(const wxString& spec, int flags) { delete m_DirsFound; m_DirsFound = new wxZipFilenameHashMap(); + if (right.empty()) // allow "/" to match the archive root + return spec; } return DoFind(); }