Cosmetic zeros.

This commit is contained in:
Alexei Podtelezhnikov 2021-09-02 22:10:57 -04:00
parent 7482c98f15
commit a81cf5aade
3 changed files with 3 additions and 3 deletions

View File

@ -477,7 +477,7 @@
/* IMPORTANT: Clear the error code, see /* IMPORTANT: Clear the error code, see
* https://gitlab.freedesktop.org/freetype/freetype/-/issues/1063 * https://gitlab.freedesktop.org/freetype/freetype/-/issues/1063
*/ */
error = 0; error = FT_Err_Ok;
goto Again; goto Again;
} }

View File

@ -2109,7 +2109,7 @@
{ {
if ( seg2->link != seg1 ) if ( seg2->link != seg1 )
{ {
seg1->link = 0; seg1->link = NULL;
seg1->serif = seg2->link; seg1->serif = seg2->link;
} }
} }

View File

@ -1924,7 +1924,7 @@
p->font = font; p->font = font;
font->memory = p->memory; font->memory = p->memory;
p->memory = 0; p->memory = NULL;
{ /* setup */ { /* setup */
size_t i; size_t i;