From: Andreas Jaeger Date: Fri, 25 Jan 2002 13:04:32 +0000 (+0000) Subject: * ldlex.l (yy_input): Correct error check. X-Git-Tag: binutils-2_12-branchpoint~284 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1e84433f5ce636c1cf4ce417cf646816c8a3b947;p=external%2Fbinutils.git * ldlex.l (yy_input): Correct error check. --- diff --git a/ld/ChangeLog b/ld/ChangeLog index 12f639e..b8ddd14 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,7 @@ +2002-01-25 Andreas Jaeger + + * ldlex.l (yy_input): Correct error check. + 2002-01-25 Alan Modra * ldmisc.c (demangle): Put back dots when string not demangled. diff --git a/ld/ldlex.l b/ld/ldlex.l index 9f127f9..0b15ca2 100644 --- a/ld/ldlex.l +++ b/ld/ldlex.l @@ -596,7 +596,7 @@ yy_input (buf, result, max_size) if (yyin) { *result = fread ((char *) buf, 1, max_size, yyin); - if (*result < 0) + if (*result < max_size && ferror (yyin)) einfo ("%F%P: read in flex scanner failed\n"); } }