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.
This commit is contained in:
Behdad Esfahbod 2004-07-27 10:43:58 +00:00
parent 2ea2a55bdf
commit 7d5435ea8c
1 changed files with 2 additions and 2 deletions

View File

@ -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;