]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/fs_zip.cpp
Added chapter on collection and container classes to contents
[wxWidgets.git] / src / common / fs_zip.cpp
index 438a20a2b2ba0af47be987c5c6aec738f6faacfb..e78ce297a0ffb5907a39631b6615f4d7ceb953e3 100644 (file)
@@ -85,7 +85,9 @@ wxFSFile* wxZipFSHandler::OpenFile(wxFileSystem& WXUNUSED(fs), const wxString& l
                             GetAnchor(location),
                             wxDateTime(wxFileModificationTime(left)));
     }
-    else return NULL;
+
+    delete s;
+    return NULL;
 }
 
 
@@ -113,7 +115,7 @@ wxString wxZipFSHandler::FindFirst(const wxString& spec, int flags)
     }
 
     m_ZipFile = left;
-    m_Archive = (void*) unzOpen(m_ZipFile.fn_str());
+    m_Archive = (void*) unzOpen(m_ZipFile.mb_str());
     m_Pattern = right.AfterLast(wxT('/'));
     m_BaseDir = right.BeforeLast(wxT('/'));