summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@gnome.org>2006-07-25 01:05:18 +0000
committerBehdad Esfahbod <behdad@src.gnome.org>2006-07-25 01:05:18 +0000
commit1ef2d84a1155246efb7e2077cbcc37f96bfddb20 (patch)
treeac9e0cc3a79a04218f1b7fe63990f3df31204b4f
parent3a1e81a7e615c7c713e50b4c37c45e1ba9ab1d46 (diff)
downloadpango-1ef2d84a1155246efb7e2077cbcc37f96bfddb20.tar.gz
Bug 347073 – Allow empty GPOS table
2006-07-24 Behdad Esfahbod <behdad@gnome.org> Bug 347073 – Allow empty GPOS table * pango/opentype/ftxopen.c (FT_Load_ScriptList): Don't err on empty GPOS/GSUB tables.
-rw-r--r--ChangeLog11
-rw-r--r--pango/opentype/ftxopen.c2
2 files changed, 11 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index e8728db8..ca8f748a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,13 +1,20 @@
+2006-07-24 Behdad Esfahbod <behdad@gnome.org>
+
+ Bug 347073 – Allow empty GPOS table
+
+ * pango/opentype/ftxopen.c (FT_Load_ScriptList): Don't
+ err on empty GPOS/GSUB tables.
+
2006-07-17 Richard Hult <richard@imendio.com>
- Bug 322374 ? Examples does not build on MacOS X (merge from HEAD).
+ Bug 322374 – Examples does not build on MacOS X (merge from HEAD).
* pango/Makefile.am (libpangocairo_1_0_la_LDFLAGS): Add the
necessary frameworks to make this build with -no-undefined.
2006-07-17 Richard Hult <richard@imendio.com>
- Bug 347021 ? atsui crash when a matching font cannot be found.
+ Bug 347021 – atsui crash when a matching font cannot be found.
Patch from Brian Tarricone.
* pango/pangoatsui-fontmap.c (pango_atsui_font_map_load_font):
diff --git a/pango/opentype/ftxopen.c b/pango/opentype/ftxopen.c
index 8afb8f2c..c1e20511 100644
--- a/pango/opentype/ftxopen.c
+++ b/pango/opentype/ftxopen.c
@@ -250,11 +250,13 @@
(void)FILE_Seek( cur_offset );
}
+ /*
if ( sl->ScriptCount == 0 )
{
error = TTO_Err_Invalid_SubTable;
goto Fail;
}
+ */
return TT_Err_Ok;