freebsd-ports/x11/kdelibs4/files/patch-kdoctools::xml2man.cpp
2001-08-30 10:59:09 +00:00

14 lines
466 B
C++

--- kdoctools/xml2man.cpp Sat Jul 28 23:55:05 2001
+++ kdoctools/xml2man.cpp.new Wed Aug 29 18:10:54 2001
@@ -63,9 +63,7 @@
QString pat = args->arg( 0 );
QFile xmlFile( pat );
xmlFile.open(IO_ReadOnly);
- QCString contents;
- contents.assign(xmlFile.readAll());
- contents.truncate(xmlFile.size());
+ QCString contents(xmlFile.readAll(), xmlFile.size() + 1);
xmlFile.close();
contents.replace( QRegExp( "<!--[^-]*-->" ), "" );