diff options
author | Owen Taylor <otaylor@redhat.com> | 2003-07-27 02:13:22 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2003-07-27 02:13:22 +0000 |
commit | 4b2c09e1f4af3d8c3aa2bab87b6c06d04ce66833 (patch) | |
tree | a62632d8e58d14e62eac366a1b9a84a10c47aae1 | |
parent | c40435ea4976a2d0b2a097e2982a0742bc0e996c (diff) | |
download | pango-4b2c09e1f4af3d8c3aa2bab87b6c06d04ce66833.tar.gz |
Fix problem where NULL mpreFixups wasn't getting returned properly.
Sat Jul 26 22:09:44 2003 Owen Taylor <otaylor@redhat.com>
* modules/indic/indic-ot.c (indic_ot_reorder):
Fix problem where NULL mpreFixups wasn't getting
returned properly.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | ChangeLog.pre-1-10 | 6 | ||||
-rw-r--r-- | ChangeLog.pre-1-4 | 6 | ||||
-rw-r--r-- | ChangeLog.pre-1-6 | 6 | ||||
-rw-r--r-- | ChangeLog.pre-1-8 | 6 | ||||
-rw-r--r-- | modules/indic/indic-ot.c | 2 |
6 files changed, 31 insertions, 1 deletions
@@ -1,3 +1,9 @@ +Sat Jul 26 22:09:44 2003 Owen Taylor <otaylor@redhat.com> + + * modules/indic/indic-ot.c (indic_ot_reorder): + Fix problem where NULL mpreFixups wasn't getting + returned properly. + Sat Jul 26 21:06:26 2003 Owen Taylor <otaylor@redhat.com> * pango/opentype/ftxgsub.c (Load_EmptyOrClassDefinition): diff --git a/ChangeLog.pre-1-10 b/ChangeLog.pre-1-10 index 40d9b750..d5e3da76 100644 --- a/ChangeLog.pre-1-10 +++ b/ChangeLog.pre-1-10 @@ -1,3 +1,9 @@ +Sat Jul 26 22:09:44 2003 Owen Taylor <otaylor@redhat.com> + + * modules/indic/indic-ot.c (indic_ot_reorder): + Fix problem where NULL mpreFixups wasn't getting + returned properly. + Sat Jul 26 21:06:26 2003 Owen Taylor <otaylor@redhat.com> * pango/opentype/ftxgsub.c (Load_EmptyOrClassDefinition): diff --git a/ChangeLog.pre-1-4 b/ChangeLog.pre-1-4 index 40d9b750..d5e3da76 100644 --- a/ChangeLog.pre-1-4 +++ b/ChangeLog.pre-1-4 @@ -1,3 +1,9 @@ +Sat Jul 26 22:09:44 2003 Owen Taylor <otaylor@redhat.com> + + * modules/indic/indic-ot.c (indic_ot_reorder): + Fix problem where NULL mpreFixups wasn't getting + returned properly. + Sat Jul 26 21:06:26 2003 Owen Taylor <otaylor@redhat.com> * pango/opentype/ftxgsub.c (Load_EmptyOrClassDefinition): diff --git a/ChangeLog.pre-1-6 b/ChangeLog.pre-1-6 index 40d9b750..d5e3da76 100644 --- a/ChangeLog.pre-1-6 +++ b/ChangeLog.pre-1-6 @@ -1,3 +1,9 @@ +Sat Jul 26 22:09:44 2003 Owen Taylor <otaylor@redhat.com> + + * modules/indic/indic-ot.c (indic_ot_reorder): + Fix problem where NULL mpreFixups wasn't getting + returned properly. + Sat Jul 26 21:06:26 2003 Owen Taylor <otaylor@redhat.com> * pango/opentype/ftxgsub.c (Load_EmptyOrClassDefinition): diff --git a/ChangeLog.pre-1-8 b/ChangeLog.pre-1-8 index 40d9b750..d5e3da76 100644 --- a/ChangeLog.pre-1-8 +++ b/ChangeLog.pre-1-8 @@ -1,3 +1,9 @@ +Sat Jul 26 22:09:44 2003 Owen Taylor <otaylor@redhat.com> + + * modules/indic/indic-ot.c (indic_ot_reorder): + Fix problem where NULL mpreFixups wasn't getting + returned properly. + Sat Jul 26 21:06:26 2003 Owen Taylor <otaylor@redhat.com> * pango/opentype/ftxgsub.c (Load_EmptyOrClassDefinition): diff --git a/modules/indic/indic-ot.c b/modules/indic/indic-ot.c index ca05ae30..94a689de 100644 --- a/modules/indic/indic-ot.c +++ b/modules/indic/indic-ot.c @@ -423,7 +423,7 @@ glong indic_ot_reorder(const gunichar *chars, const glong *utf8_offsets, glong c prev = syllable; } - if (mpreFixups) { + if (outMPreFixups) { *outMPreFixups = mpreFixups; } |