]> git.saurik.com Git - wxWidgets.git/commitdiff
Fix potential crash, fixes #12375: PATCH to fix help controller crash
authorRobert Roebling <robert@roebling.de>
Sat, 21 Aug 2010 09:36:12 +0000 (09:36 +0000)
committerRobert Roebling <robert@roebling.de>
Sat, 21 Aug 2010 09:36:12 +0000 (09:36 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65371 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/fs_arc.cpp

index 7511c8704cafafe919f48586234f2a6ebe4f8ae4..7203354982df660a623f6042933a41f07f799385 100644 (file)
@@ -358,7 +358,7 @@ wxFSFile* wxArchiveFSHandler::OpenFile(
         right = rightPart.GetFullPath(wxPATH_UNIX);
     }
 
-    if (right.GetChar(0) == wxT('/')) right = right.Mid(1);
+    if (right.Length() && right.GetChar(0) == wxT('/')) right = right.Mid(1);
 
     if (!m_cache)
         m_cache = new wxArchiveFSCache;