Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
FreeType
FreeType
Commits
5b58f5e3
Commit
5b58f5e3
authored
Jun 23, 2000
by
Pavel Kaňkovský
Browse files
fixed *top++ bug present in type1/t1gload.c as well
parent
7802d466
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/type1z/t1gload.c
View file @
5b58f5e3
...
...
@@ -1035,7 +1035,10 @@
{
FT_TRACE4
((
" div"
));
if
(
top
[
1
])
*
top
++
=
top
[
0
]
/
top
[
1
];
{
*
top
=
top
[
0
]
/
top
[
1
];
++
top
;
}
else
{
FT_ERROR
((
"T1.Parse_CharStrings : division by 0
\n
"
));
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment