summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorEskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@digia.com>2014-05-12 09:09:24 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-05-14 09:13:38 +0200
commitd16508a285a5423ae9a5034e969801bce74ffb98 (patch)
tree7e2f468c0528325864ec98b8f03fdb5dfb97dd15 /tests
parent4f83102df0389ee9ae4bb974bb2e48723f52dbea (diff)
Fix crash when loading invalid font data in QRawFont
When passing invalid data to QRawFont, we need to fail gracefully and mark the font as invalid, instead of crashing. This crashed because of different missing sanity checks in the Windows and FontConfig font databases. [ChangeLog][Text] Fixed crash when trying to load a font from invalid data. Task-number: QTBUG-37190 Change-Id: I62c81217ec7d873350b575c9d4ae8e6f0a939540 Reviewed-by: Michael Bruning <michael.bruning@digia.com> Reviewed-by: Konstantin Ritt <ritt.ks@gmail.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/gui/text/qrawfont/tst_qrawfont.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/auto/gui/text/qrawfont/tst_qrawfont.cpp b/tests/auto/gui/text/qrawfont/tst_qrawfont.cpp
index ae6e450301..20bfaf99dd 100644
--- a/tests/auto/gui/text/qrawfont/tst_qrawfont.cpp
+++ b/tests/auto/gui/text/qrawfont/tst_qrawfont.cpp
@@ -99,6 +99,8 @@ private slots:
void rawFontSetPixelSize();
void multipleRawFontsFromData();
+
+ void rawFontFromInvalidData();
private:
QString testFont;
QString testFontBoldItalic;
@@ -939,6 +941,15 @@ void tst_QRawFont::multipleRawFontsFromData()
|| testFont.style() != (testFontBoldItalic.style()));
}
+void tst_QRawFont::rawFontFromInvalidData()
+{
+ QByteArray invalidData("foobar");
+ QRawFont font;
+ font.loadFromData(invalidData, 10, QFont::PreferDefaultHinting);
+
+ QVERIFY(!font.isValid());
+}
+
#endif // QT_NO_RAWFONT
QTEST_MAIN(tst_QRawFont)