aboutsummaryrefslogtreecommitdiffstats
path: root/packages/qte/qte-2.3.12/increase-qxml-robustness.patch
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <hrw@openembedded.org>2006-04-21 10:30:08 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2006-04-21 10:30:08 +0000
commit28f02967abbf61c832bd5713ee7c055e2c73eb19 (patch)
treefab6a9dab642c1e0ea3f78a5d0394c34a60397d2 /packages/qte/qte-2.3.12/increase-qxml-robustness.patch
parent2ae892dc300673b51fb9eb2515a3b0e4f14ae587 (diff)
downloadopenembedded-28f02967abbf61c832bd5713ee7c055e2c73eb19.tar.gz
added qt/e 2.3.12 as non-default, WIP
Diffstat (limited to 'packages/qte/qte-2.3.12/increase-qxml-robustness.patch')
-rw-r--r--packages/qte/qte-2.3.12/increase-qxml-robustness.patch17
1 files changed, 17 insertions, 0 deletions
diff --git a/packages/qte/qte-2.3.12/increase-qxml-robustness.patch b/packages/qte/qte-2.3.12/increase-qxml-robustness.patch
new file mode 100644
index 0000000000..3a29b4ab03
--- /dev/null
+++ b/packages/qte/qte-2.3.12/increase-qxml-robustness.patch
@@ -0,0 +1,17 @@
+
+#
+# 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 );