]> git.saurik.com Git - wxWidgets.git/blobdiff - src/html/htmlfilter.cpp
More samples makefiles
[wxWidgets.git] / src / html / htmlfilter.cpp
index 508824b43172bdecf5c5f59198c19aae6cb4a5c7..37215c51707f90cce6b09914699ecbb0f79c271d 100644 (file)
@@ -140,11 +140,11 @@ wxString wxHtmlFilterHTML::ReadFile(const wxFSFile& file) const
     wxString doc;
 
     if (s == NULL) return wxEmptyString;
-    src = (char*) malloc(s -> GetSize() + 1);
+    src = new char[s -> GetSize() + 1];
     src[s -> GetSize()] = 0;
     s -> Read(src, s -> GetSize());
     doc = src;
-    free(src);
+    delete[] src;
 
     return doc;
 }