summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@gnome.org>2006-01-16 10:14:24 +0000
committerBehdad Esfahbod <behdad@src.gnome.org>2006-01-16 10:14:24 +0000
commitdb2b18526d6238b02c28208ec27d2fc18635bba0 (patch)
treec144f2ab50cf0c758dc20a22926554454e40e11d
parent6cc141fdd95ba7b2623f176e7a4321524d600641 (diff)
downloadpango-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)
-rw-r--r--ChangeLog5
-rw-r--r--modules/indic/mprefixups.c2
2 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index fc400f6d..98000d29 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
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)
+
+2006-01-16 Behdad Esfahbod <behdad@gnome.org>
+
Fixes bug #71414, allowing to disable building/installing modules.
* configure.in: Add support for --with-dynamic-modules.
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];