X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9777274a4a3707bcc52d5bb4104be894ab1078d0..50b58dec17f90370a1ae76ad00aaff8c3c5066a9:/src/common/fs_zip.cpp diff --git a/src/common/fs_zip.cpp b/src/common/fs_zip.cpp index 144adb1f99..136cbb9d37 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('/'));