From edaa768253cfeb97d614537253f90d47aa93ff6f Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Tue, 30 Oct 2018 01:35:58 -0700 Subject: [PATCH] [util] Use fgets instead of getline such that windows passes --- util/hb-shape.cc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/util/hb-shape.cc b/util/hb-shape.cc index 6c727d019..1a671230d 100644 --- a/util/hb-shape.cc +++ b/util/hb-shape.cc @@ -163,9 +163,8 @@ main (int argc, char **argv) if (argc == 2 && !strcmp (argv[1], "--batch")) { unsigned int ret = 0; - char *buf = nullptr; - size_t len; - while (getline (&buf, &len, stdin) > 0) + char buf[4092]; + while (fgets (buf, sizeof (buf), stdin)) { size_t l = strlen (buf); if (l && buf[l - 1] == '\n') buf[l - 1] = '\0'; @@ -187,7 +186,6 @@ main (int argc, char **argv) if (ret) break; } - free (buf); return ret; } main_font_text_t, FONT_SIZE_UPEM, 0> driver;