diff options
author | Stefan Kemper <stefan.kemper@artifex.com> | 2002-03-25 23:08:45 +0000 |
---|---|---|
committer | Stefan Kemper <stefan.kemper@artifex.com> | 2002-03-25 23:08:45 +0000 |
commit | 671b332a6224f3bfe19f5368f7ec9f9d3863279e (patch) | |
tree | 8ae0fb4eb4c9d3d546914ebbaf56f5352000f3af /pl/plufont.c | |
parent | c2eddd86c7d3d17a5098016e826be021f66654c3 (diff) |
Removing check for truetype version number 0,0,1,0 after finding valid driver
generated pxl files with garbage in this location.
git-svn-id: http://svn.ghostscript.com/ghostpcl/trunk/ghostpcl@1625 06663e23-700e-0410-b217-a244a6096597
Diffstat (limited to 'pl/plufont.c')
-rw-r--r-- | pl/plufont.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pl/plufont.c b/pl/plufont.c index b0b607782..8b3649380 100644 --- a/pl/plufont.c +++ b/pl/plufont.c @@ -505,7 +505,7 @@ pl_font_scan_segments(pl_font_t *plfont, int fst_offset, int start_offset, * maxp -- but we don't check the actual names). */ if ( seg_size < 12 + 5 * 16 || - memcmp(sdata, "\000\001\000\000", 4) || + /* memcmp(sdata, "\000\001\000\000", 4) || */ u16(sdata + 4) < 3 ) return_scan_error(pfoe->illegal_GT_segment); |