X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9777274a4a3707bcc52d5bb4104be894ab1078d0..2cdd63c6b1d473ffd7726f619085997b0737952e:/src/common/fs_zip.cpp diff --git a/src/common/fs_zip.cpp b/src/common/fs_zip.cpp index 144adb1f99..d2210718ce 100644 --- a/src/common/fs_zip.cpp +++ b/src/common/fs_zip.cpp @@ -151,7 +151,13 @@ wxString wxZipFSHandler::FindFirst(const wxString& spec, int flags) m_ZipFile = left; wxString nativename = wxFileSystem::URLToFileName(m_ZipFile).GetFullPath(); - m_Archive = new wxZipInputStream(*new wxFFileInputStream(nativename)); + + wxFFileInputStream *fs = new wxFFileInputStream(nativename); + if (fs->Ok()) + m_Archive = new wxZipInputStream(*fs); + else + delete fs; + m_Pattern = right.AfterLast(wxT('/')); m_BaseDir = right.BeforeLast(wxT('/')); @@ -160,7 +166,7 @@ wxString wxZipFSHandler::FindFirst(const wxString& spec, int flags) if (m_AllowDirs) { delete m_DirsFound; - m_DirsFound = new wxLongToLongHashMap(); + m_DirsFound = new wxZipFilenameHashMap(); } return DoFind(); } @@ -199,12 +205,9 @@ wxString wxZipFSHandler::DoFind() dir = namestr.BeforeLast(wxT('/')); while (!dir.IsEmpty()) { - long key = 0; - for (size_t i = 0; i < dir.Length(); i++) key += (wxUChar)dir[i]; - wxLongToLongHashMap::iterator it = m_DirsFound->find(key); - if (it == m_DirsFound->end()) + if( m_DirsFound->find(dir) == m_DirsFound->end() ) { - (*m_DirsFound)[key] = 1; + (*m_DirsFound)[dir] = 1; filename = dir.AfterLast(wxT('/')); dir = dir.BeforeLast(wxT('/')); if (!filename.IsEmpty() && m_BaseDir == dir &&