*** gstype42.c~ Fri Aug 28 19:01:20 1998 --- gstype42.c Mon Jan 18 13:56:47 1999 *************** *** 111,118 **** access(0, 12, OffsetTable); { ! static const byte version1_0[4] = ! {0, 1, 0, 0}; ! if (memcmp(OffsetTable, version1_0, 4)) return_error(gs_error_invalidfont); } --- 111,119 ---- access(0, 12, OffsetTable); { ! static const byte version1_0[4] = {0, 1, 0, 0}; ! static const byte * const version_true = (const byte *)"true"; ! if (memcmp(OffsetTable, version1_0, 4) && ! memcmp(OffsetTable, version_true, 4)) return_error(gs_error_invalidfont); }