From b50b481d4c421634772d6470d6949d0ecff22f11 Mon Sep 17 00:00:00 2001 From: Tom Kacvinsky Date: Thu, 23 Nov 2000 03:43:14 +0000 Subject: [PATCH] In function T2_Get_String, we called T2_Get_Name with an string id that was off by one. --- src/cff/t2load.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cff/t2load.c b/src/cff/t2load.c index d9e46de09..2a79ab691 100644 --- a/src/cff/t2load.c +++ b/src/cff/t2load.c @@ -302,7 +302,7 @@ { /* if it is not a standard string, return it */ if ( sid > 390 ) - return T2_Get_Name( index, sid - 390 ); + return T2_Get_Name( index, sid - 391 ); /* that's a standard string, fetch a copy from the PSName module */ {