Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/dvi/mdvi-lib/gf.c
diff options
context:
space:
mode:
authorNickolay V. Shmyrev <nshmyrev@src.gnome.org>2005-06-23 21:05:32 (GMT)
committer Nickolay V. Shmyrev <nshmyrev@src.gnome.org>2005-06-23 21:05:32 (GMT)
commita8e6dab2d1f20a861df947c5705b6bbd0cb81c1a (patch)
treecdea106e2e1798cba68d4e492e724b832ab6411d /dvi/mdvi-lib/gf.c
parent1f82fa9589a57a49476066010861a0dae84f39a1 (diff)
Rename xmalloc to mdvi_malloc to avoid libtool conflict, update year in
copyright.
Diffstat (limited to 'dvi/mdvi-lib/gf.c')
-rw-r--r--dvi/mdvi-lib/gf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dvi/mdvi-lib/gf.c b/dvi/mdvi-lib/gf.c
index 459e428..2c147ec 100644
--- a/dvi/mdvi-lib/gf.c
+++ b/dvi/mdvi-lib/gf.c
@@ -191,7 +191,7 @@ static int gf_read_bitmap(FILE *p, DviFontChar *ch)
s = read_string(p, op - GF_XXX1 + 1, NULL, 0);
DEBUG((DBG_SPECIAL, "(gf) Character %d: Special \"%s\"\n",
ch->code, s));
- xfree(s);
+ mdvi_free(s);
#else
n = fugetn(p, op - GF_XXX1 + 1);
fseek(p, (long)n, SEEK_CUR);
@@ -362,7 +362,7 @@ badgf:
error(_("%s: File corrupted, or not a GF file\n"), font->fontname);
error:
if(font->chars) {
- xfree(font->chars);
+ mdvi_free(font->chars);
font->chars = NULL;
}
font->loc = font->hic = 0;