From: Michael Wetherell Date: Fri, 8 Oct 2010 11:16:54 +0000 (+0000) Subject: Fix for wxChm X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/15552854db999484228d028c292b0ccfa675cc11 Fix for wxChm git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65783 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/html/chm.cpp b/src/html/chm.cpp index 195e7b9a95..3d6ad7d60c 100644 --- a/src/html/chm.cpp +++ b/src/html/chm.cpp @@ -842,6 +842,8 @@ wxFSFile* wxChmFSHandler::OpenFile(wxFileSystem& WXUNUSED(fs), } wxFileName leftFilename = wxFileSystem::URLToFileName(left); + if (!leftFilename.FileExists()) + return NULL; // Open a stream to read the content of the chm-file s = new wxChmInputStream(leftFilename.GetFullPath(), right, true);