From: Nick Clifton Date: Thu, 1 Dec 2016 15:20:19 +0000 (+0000) Subject: Fix seg fault attempting to unget an EOF character. X-Git-Tag: users/ARM/embedded-binutils-master-2016q4~55 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=69ace2200106348a1b00d509a6a234337c104c17;p=external%2Fbinutils.git Fix seg fault attempting to unget an EOF character. PR gas/20898 * app.c (do_scrub_chars): Do not attempt to unget EOF. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 76c23ce..a142857 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,8 @@ 2016-12-01 Nick Clifton + PR gas/20898 + * app.c (do_scrub_chars): Do not attempt to unget EOF. + PR gas/20897 * subsegs.c (subsegs_print_statistics): Do nothing if no output file was created. diff --git a/gas/app.c b/gas/app.c index 6b883a1..dcd8219 100644 --- a/gas/app.c +++ b/gas/app.c @@ -1188,7 +1188,7 @@ do_scrub_chars (size_t (*get) (char *, size_t), char *tostart, size_t tolen) state = -2; break; } - else + else if (ch2 != EOF) { UNGET (ch2); }