From: José Aliste Date: Mon, 17 Jan 2011 17:30:00 +0000 (-0300) Subject: Fix problem with some pk fonts. X-Git-Tag: EVINCE_2_91_6~24 X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=commitdiff_plain;h=0a6e8aabcc46d47b5d84e5414cd0e07d57ef171b;p=evince.git Fix problem with some pk fonts. --- diff --git a/backend/dvi/mdvi-lib/pk.c b/backend/dvi/mdvi-lib/pk.c index 08377e63..a9116134 100644 --- a/backend/dvi/mdvi-lib/pk.c +++ b/backend/dvi/mdvi-lib/pk.c @@ -328,13 +328,14 @@ static int pk_load_font(DviParams *unused, DviFont *font) { int i; int flag_byte; - int loc, hic, maxch; + int hic, maxch; Int32 checksum; FILE *p; #ifndef NODEBUG char s[256]; #endif long alpha, beta, z; + unsigned int loc; font->chars = xnalloc(DviFontChar, 256); p = font->in; @@ -521,7 +522,7 @@ static int pk_load_font(DviParams *unused, DviFont *font) } /* resize font char data */ - if(loc > 0 && hic < maxch-1) { + if(loc > 0 || hic < maxch-1) { memmove(font->chars, font->chars + loc, (hic - loc + 1) * sizeof(DviFontChar)); font->chars = xresize(font->chars,