summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@src.gnome.org>2004-07-27 10:43:58 +0000
committerBehdad Esfahbod <behdad@src.gnome.org>2004-07-27 10:43:58 +0000
commita4a5b647109820aafe6c6646887c74e33f15a484 (patch)
treed3cbe411de014f52bb7d22f150fc325c8a587b07
parent9fa36eb30c7228306e794b48de0cad0797d17ee8 (diff)
downloadpango-a4a5b647109820aafe6c6646887c74e33f15a484.tar.gz
Fix bug to copy glyph from in_string, not out_string.
* pango/opentype/otlbuffer.c (otl_buffer_copy_output_glyph): Fix bug to copy glyph from in_string, not out_string.
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLog.pre-1-105
-rw-r--r--ChangeLog.pre-1-65
-rw-r--r--ChangeLog.pre-1-85
-rw-r--r--pango/opentype/otlbuffer.c4
5 files changed, 22 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 78888706..36592a4a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Tue Jul 27 06:35:25 2004 Behdad Esfahbod <pango@behdad.org>
+
+ * pango/opentype/otlbuffer.c (otl_buffer_copy_output_glyph):
+ Fix bug to copy glyph from in_string, not out_string.
+
Mon Jul 26 19:11:46 2004 Owen Taylor <otaylor@redhat.com>
* pango/opentype/ftxgdef.c: Fix allocation and indexing
diff --git a/ChangeLog.pre-1-10 b/ChangeLog.pre-1-10
index 78888706..36592a4a 100644
--- a/ChangeLog.pre-1-10
+++ b/ChangeLog.pre-1-10
@@ -1,3 +1,8 @@
+Tue Jul 27 06:35:25 2004 Behdad Esfahbod <pango@behdad.org>
+
+ * pango/opentype/otlbuffer.c (otl_buffer_copy_output_glyph):
+ Fix bug to copy glyph from in_string, not out_string.
+
Mon Jul 26 19:11:46 2004 Owen Taylor <otaylor@redhat.com>
* pango/opentype/ftxgdef.c: Fix allocation and indexing
diff --git a/ChangeLog.pre-1-6 b/ChangeLog.pre-1-6
index 78888706..36592a4a 100644
--- a/ChangeLog.pre-1-6
+++ b/ChangeLog.pre-1-6
@@ -1,3 +1,8 @@
+Tue Jul 27 06:35:25 2004 Behdad Esfahbod <pango@behdad.org>
+
+ * pango/opentype/otlbuffer.c (otl_buffer_copy_output_glyph):
+ Fix bug to copy glyph from in_string, not out_string.
+
Mon Jul 26 19:11:46 2004 Owen Taylor <otaylor@redhat.com>
* pango/opentype/ftxgdef.c: Fix allocation and indexing
diff --git a/ChangeLog.pre-1-8 b/ChangeLog.pre-1-8
index 78888706..36592a4a 100644
--- a/ChangeLog.pre-1-8
+++ b/ChangeLog.pre-1-8
@@ -1,3 +1,8 @@
+Tue Jul 27 06:35:25 2004 Behdad Esfahbod <pango@behdad.org>
+
+ * pango/opentype/otlbuffer.c (otl_buffer_copy_output_glyph):
+ Fix bug to copy glyph from in_string, not out_string.
+
Mon Jul 26 19:11:46 2004 Owen Taylor <otaylor@redhat.com>
* pango/opentype/ftxgdef.c: Fix allocation and indexing
diff --git a/pango/opentype/otlbuffer.c b/pango/opentype/otlbuffer.c
index 9849fd5a..b8595b20 100644
--- a/pango/opentype/otlbuffer.c
+++ b/pango/opentype/otlbuffer.c
@@ -205,7 +205,7 @@
FT_Error
otl_buffer_add_output_glyph( OTL_Buffer buffer,
- FT_UInt glyph_index,
+ FT_UInt glyph_index,
FT_UShort component,
FT_UShort ligID )
{
@@ -224,7 +224,7 @@
if ( error )
return error;
- buffer->out_string[buffer->out_pos++] = buffer->out_string[buffer->in_pos++];
+ buffer->out_string[buffer->out_pos++] = buffer->in_string[buffer->in_pos++];
buffer->out_length = buffer->out_pos;
return FT_Err_Ok;