summaryrefslogtreecommitdiff
path: root/packages/qte/qte-2.3.10/increase-qxml-robustness.patch
diff options
context:
space:
mode:
Diffstat (limited to 'packages/qte/qte-2.3.10/increase-qxml-robustness.patch')
-rw-r--r--packages/qte/qte-2.3.10/increase-qxml-robustness.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/packages/qte/qte-2.3.10/increase-qxml-robustness.patch b/packages/qte/qte-2.3.10/increase-qxml-robustness.patch
deleted file mode 100644
index 3a29b4ab03..0000000000
--- a/packages/qte/qte-2.3.10/increase-qxml-robustness.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-
-#
-# Patch managed by http://www.holgerschurig.de/patcher.html
-#
-
---- qt-2.3.10/src/xml/qxml.cpp~xml
-+++ qt-2.3.10/src/xml/qxml.cpp
-@@ -809,6 +809,9 @@
- // ### The input source should not do the encoding detection!
- void QXmlInputSource::readInput( QByteArray& rawData )
- {
-+ // avoid crash if the array has less than 5 characters (skyhusker@handhelds.org)
-+ if ( rawData.size() < 6 )
-+ return;
- QBuffer buf( rawData );
- buf.open( IO_ReadOnly );
- QTextStream *stream = new QTextStream( &buf );