From b740b02d2311cb5a3dd61767f824f3bfa770184e Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sun, 16 Jul 2017 16:22:33 -0700 Subject: [PATCH 3/3] Use memset, not bzero * src/ftcrfont.c (ftcrfont_glyph_extents): Use memset instead of the (less-portable) bzero. --- src/ftcrfont.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ftcrfont.c b/src/ftcrfont.c index d720057..9b592e6 100644 --- a/src/ftcrfont.c +++ b/src/ftcrfont.c @@ -81,9 +81,9 @@ ftcrfont_glyph_extents (struct font *font, ftcrfont_info->metrics = xrealloc (ftcrfont_info->metrics, sizeof (struct font_metrics *) * (row + 1)); - bzero (ftcrfont_info->metrics + ftcrfont_info->metrics_nrows, - (sizeof (struct font_metrics *) - * (row + 1 - ftcrfont_info->metrics_nrows))); + memset (ftcrfont_info->metrics + ftcrfont_info->metrics_nrows, 0, + (sizeof (struct font_metrics *) + * (row + 1 - ftcrfont_info->metrics_nrows))); ftcrfont_info->metrics_nrows = row + 1; } if (ftcrfont_info->metrics[row] == NULL) -- 2.7.4