From: Jerry DeLisle Date: Wed, 26 Jul 2006 01:40:29 +0000 (+0000) Subject: 2006-07-25 Jerry DeLisle X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ca8d5bc6c6b64b464396a9caa9a7ddfcff122bcb;p=gcc.git 2006-07-25 Jerry DeLisle PR libgfortran/258335 * close.c (st_close): Add error when UNIT does not exist. * file_position.c (st_flush): Add error when UNIT does not exist. From-SVN: r115749 --- diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index c2855652644..dd38a894efc 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,3 +1,9 @@ +2006-07-25 Jerry DeLisle + + PR libgfortran/258335 + * close.c (st_close): Add error when UNIT does not exist. + * file_position.c (st_flush): Add error when UNIT does not exist. + 2006-07-25 Paolo Bonzini PR build/26188 diff --git a/libgfortran/io/close.c b/libgfortran/io/close.c index 9dcc1a3e60b..b6766ff37d5 100644 --- a/libgfortran/io/close.c +++ b/libgfortran/io/close.c @@ -102,6 +102,8 @@ st_close (st_parameter_close *clp) unlink (path); #endif } - + else + generate_error (&clp->common, ERROR_BAD_OPTION, + "Can't find specified UNIT in CLOSE"); library_end (); } diff --git a/libgfortran/io/file_pos.c b/libgfortran/io/file_pos.c index e9697bb7ede..7a71ecef63b 100644 --- a/libgfortran/io/file_pos.c +++ b/libgfortran/io/file_pos.c @@ -340,6 +340,9 @@ st_flush (st_parameter_filepos *fpp) flush (u->s); unlock_unit (u); } + else + generate_error (&fpp->common, ERROR_BAD_OPTION, + "Can't find specified UNIT in FLUSH"); library_end (); }