* src/pshinter/pshalgo.c (psh_glyph_compute_inflections): fixed
a stupid typo which created a variable-used-before-initialized bug
This commit is contained in:
parent
d60ae949db
commit
4e9cc3c4ee
|
@ -1,3 +1,8 @@
|
||||||
|
2006-11-09 David Turner <david@freetype.org>
|
||||||
|
|
||||||
|
* src/pshinter/pshalgo.c (psh_glyph_compute_inflections): fixed
|
||||||
|
a stupid typo which created a variable-used-before-initialized bug
|
||||||
|
|
||||||
2006-11-07 Zhe Su <james.su@gmail.com>
|
2006-11-07 Zhe Su <james.su@gmail.com>
|
||||||
|
|
||||||
* src/base/ftsynth.c (FT_GlyphSlot_Embolden): Handle vertical layout
|
* src/base/ftsynth.c (FT_GlyphSlot_Embolden): Handle vertical layout
|
||||||
|
|
|
@ -1012,7 +1012,7 @@
|
||||||
in_x = end->org_u - start->org_u;
|
in_x = end->org_u - start->org_u;
|
||||||
in_y = end->org_v - start->org_v;
|
in_y = end->org_v - start->org_v;
|
||||||
|
|
||||||
} while ( in_x == 0 && out_x == 0 );
|
} while ( in_x == 0 && in_y == 0 );
|
||||||
|
|
||||||
/* extend the segment start whenever possible */
|
/* extend the segment start whenever possible */
|
||||||
before = start;
|
before = start;
|
||||||
|
|
Loading…
Reference in New Issue