X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/08335000c543995d2739a5538f8164a6c4793cd5..c1d8296a78d1f630952fc5395e4072c8a654b8ef:/src/common/fs_zip.cpp diff --git a/src/common/fs_zip.cpp b/src/common/fs_zip.cpp index 9f40072133..eefa93f96a 100644 --- a/src/common/fs_zip.cpp +++ b/src/common/fs_zip.cpp @@ -7,12 +7,6 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// - - -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma implementation "fs_zip.h" -#endif - #include "wx/wxprec.h" #ifdef __BORLANDC__ @@ -71,13 +65,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 +84,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,16 +100,20 @@ 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; s = new wxZipFSInputStream(leftFile); if (s && s->IsOk()) { - wxZipEntry *ent; bool found = false; - while (!found && (ent = s->GetNextEntry())) { + while (!found) + { + wxZipEntry *ent = s->GetNextEntry(); + if (!ent) + break; if (ent->GetInternalName() == right) found = true; delete ent; @@ -138,7 +140,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) { @@ -164,6 +166,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) { @@ -171,6 +175,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(); }