diff options
author | Richard Lowe <richlowe@richlowe.net> | 2021-03-04 20:10:47 -0600 |
---|---|---|
committer | Richard Lowe <richlowe@richlowe.net> | 2021-03-09 14:57:24 -0600 |
commit | 2587b3a0593a431a99cc2dc78bf1034e672a35e2 (patch) | |
tree | 5f7a8f7533757c2c234e22dbf7fff1c783204e76 /usr/src/cmd/tic/tic_scan.c | |
parent | d893e05e2a64324d7059baefcbf7bd9872a32ad9 (diff) | |
download | illumos-joyent-2587b3a0593a431a99cc2dc78bf1034e672a35e2.tar.gz |
13606 tic(1) writes uninitialized data to some terminfo entries
Reviewed by: Andy Fiddaman <andy@omnios.org>
Reviewed by: Jason King <jason.brian.king+illumos@gmail.com>
Approved by: Robert Mustacchi <rm@fingolfin.org>
Diffstat (limited to 'usr/src/cmd/tic/tic_scan.c')
-rw-r--r-- | usr/src/cmd/tic/tic_scan.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr/src/cmd/tic/tic_scan.c b/usr/src/cmd/tic/tic_scan.c index c0f748f27f..460394aa99 100644 --- a/usr/src/cmd/tic/tic_scan.c +++ b/usr/src/cmd/tic/tic_scan.c @@ -90,6 +90,9 @@ #define iswhite(ch) (ch == ' ' || ch == '\t') +extern void err_abort(char *, ...); +extern void syserr_abort(char *, ...); +extern void warning(char *, ...); static int first_column; /* See 'next_char()' below */ @@ -128,7 +131,6 @@ void panic_mode(int); * EOF The end of the file has been reached. * */ - int get_token() { |