diff options
author | Werner Lemberg <wl@gnu.org> | 2006-01-08 13:43:30 +0000 |
---|---|---|
committer | Werner Lemberg <wl@gnu.org> | 2006-01-08 13:43:30 +0000 |
commit | e8f92af3f0b09095d7966714468b5306b5e12ff4 (patch) | |
tree | c4de16d768d0a2ea43bc328094ccd320564376fa /src/pcf | |
parent | 05cda08bcb2c1dd0f2ba7a2b85d649d908c65cbf (diff) |
* src/pcf/pcfread.c (pcf_get_bitmaps): Remove unused variable
`bitmaps'. From Yu Lei <yulei0@gmail.com>.
Diffstat (limited to 'src/pcf')
-rw-r--r-- | src/pcf/pcfread.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/pcf/pcfread.c b/src/pcf/pcfread.c index ea74d17d..2c798e21 100644 --- a/src/pcf/pcfread.c +++ b/src/pcf/pcfread.c @@ -2,7 +2,7 @@ FreeType font driver for pcf fonts - Copyright 2000, 2001, 2002, 2003, 2004, 2005 by + Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006 by Francesco Zappa Nardelli Permission is hereby granted, free of charge, to any person obtaining a copy @@ -571,7 +571,6 @@ THE SOFTWARE. FT_Long bitmapSizes[GLYPHPADOPTIONS]; FT_ULong format, size; int nbitmaps, i, sizebitmaps = 0; - char* bitmaps; error = pcf_seek_to_table_type( stream, @@ -650,7 +649,6 @@ THE SOFTWARE. Bail: FT_FREE ( offsets ); - FT_FREE ( bitmaps ); return error; } |