aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2007-01-12 03:14:01 +0000
committerAlan Modra <amodra@gmail.com>2007-01-12 03:14:01 +0000
commit1f5409bb9c1b98fc69b351b38594f5cbc9d731ca (patch)
treef8054148efc4c743ab309bf0ff5735557e4629f9 /gas
parent7bd7b3eff2840d8309852c8a4091cb3b589fccd8 (diff)
downloadfsf-binutils-gdb-1f5409bb9c1b98fc69b351b38594f5cbc9d731ca.zip
fsf-binutils-gdb-1f5409bb9c1b98fc69b351b38594f5cbc9d731ca.tar.gz
fsf-binutils-gdb-1f5409bb9c1b98fc69b351b38594f5cbc9d731ca.tar.bz2
* input-file.c (input_file_open): Check fgets return.
Diffstat (limited to 'gas')
-rw-r--r--gas/ChangeLog4
-rw-r--r--gas/input-file.c8
2 files changed, 8 insertions, 4 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index b3afb4b..58478b4 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,7 @@
+2007-01-12 Alan Modra <amodra@bigpond.net.au>
+
+ * input-file.c (input_file_open): Check fgets return.
+
2007-01-11 Paul Brook <paul@codesourcery.com>
* config/tc-arm.c (do_t_add_sub): Use Rd and Rs.
diff --git a/gas/input-file.c b/gas/input-file.c
index 91ec530..0907bad 100644
--- a/gas/input-file.c
+++ b/gas/input-file.c
@@ -163,8 +163,8 @@ input_file_open (char *filename, /* "" means use stdin. Must not be 0. */
c = getc (f_in);
if (c == 'N')
{
- fgets (buf, 80, f_in);
- if (!strncmp (buf, "O_APP", 5) && ISSPACE (buf[5]))
+ if (fgets (buf, sizeof (buf), f_in)
+ && !strncmp (buf, "O_APP", 5) && ISSPACE (buf[5]))
preprocess = 0;
if (!strchr (buf, '\n'))
ungetc ('#', f_in); /* It was longer. */
@@ -173,8 +173,8 @@ input_file_open (char *filename, /* "" means use stdin. Must not be 0. */
}
else if (c == 'A')
{
- fgets (buf, 80, f_in);
- if (!strncmp (buf, "PP", 2) && ISSPACE (buf[2]))
+ if (fgets (buf, sizeof (buf), f_in)
+ && !strncmp (buf, "PP", 2) && ISSPACE (buf[2]))
preprocess = 1;
if (!strchr (buf, '\n'))
ungetc ('#', f_in);