]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/sckfile.cpp
removed gtk.h include
[wxWidgets.git] / src / common / sckfile.cpp
index c9f723a1454479823460cf11037795e21a05a740..6118f10c01a4495638041caf050f6f60881d2eee 100644 (file)
@@ -43,7 +43,13 @@ wxFileProto::~wxFileProto()
 
 wxInputStream *wxFileProto::GetInputStream(const wxString& path)
 {
-  return new wxFileInputStream(wxURL::ConvertFromURI(path));
+  wxFileInputStream* retval = new wxFileInputStream(wxURL::ConvertFromURI(path));
+  if (retval->Ok()) {
+    return retval;
+  } else {
+    delete retval;
+    return 0;
+  }
 }
 
 #endif // wxUSE_STREAMS && wxUSE_PROTOCOL_FILE