Set errno to zero before allocating RAM

This commit is contained in:
wundrweapon 2020-08-08 20:34:01 -04:00
parent c882ef2f60
commit 76c66cdfc5
No known key found for this signature in database
GPG key ID: BA156835EAB42DC5

1
hb.c
View file

@ -125,6 +125,7 @@ hbtransformsegment(XftFont *xfont, const Glyph *string, hb_codepoint_t *codepoin
}
/* Prep user features for OpenType tags. */
errno = 0;
hb_feature_t *ufeats = calloc(numuserfeats, sizeof(hb_feature_t));
if (errno == ENOMEM)
ufeats = NULL;