diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2006-01-16 10:14:24 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2006-01-16 10:14:24 +0000 |
commit | db2b18526d6238b02c28208ec27d2fc18635bba0 (patch) | |
tree | c144f2ab50cf0c758dc20a22926554454e40e11d /modules/indic/mprefixups.c | |
parent | 6cc141fdd95ba7b2623f176e7a4321524d600641 (diff) | |
download | pango-db2b18526d6238b02c28208ec27d2fc18635bba0.tar.gz |
Remove unused variable clusterSave that was leaking too. (bug #316466,
2006-01-16 Behdad Esfahbod <behdad@gnome.org>
* modules/indic/mprefixups.c (indic_mprefixups_apply): Remove unused
variable clusterSave that was leaking too. (bug #316466, Steve Grubbs)
Diffstat (limited to 'modules/indic/mprefixups.c')
-rw-r--r-- | modules/indic/mprefixups.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/modules/indic/mprefixups.c b/modules/indic/mprefixups.c index 3fd4003b..34118f5e 100644 --- a/modules/indic/mprefixups.c +++ b/modules/indic/mprefixups.c @@ -75,7 +75,6 @@ void indic_mprefixups_apply(MPreFixups *mprefixups, PangoOTBuffer *buffer) PangoOTGlyph *glyphs; int n_glyphs; PangoOTGlyph *mpreSave; - int *clusterSave; /* determine post GSUB location of baseIndex and mpreIndex */ @@ -99,7 +98,6 @@ void indic_mprefixups_apply(MPreFixups *mprefixups, PangoOTBuffer *buffer) mpreDest = baseGlyph - mpreCount; mpreSave = g_new (PangoOTGlyph, mpreCount); - clusterSave = g_new (int, mpreCount); for (i = 0; i < mpreCount; i += 1) { mpreSave[i] = glyphs[mpreGlyph + i]; |