diff options
author | DJ Delorie <dj@redhat.com> | 2000-05-26 18:46:47 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2000-05-26 18:46:47 +0000 |
commit | 3b35ec75cb0811cb76b4c4aa347f2878c20222f3 (patch) | |
tree | a8134c7f29e1ac444be3b3a0b94028e790de6e7d | |
parent | 2114f57b9397aebda1c89a5c627dba0d34159280 (diff) | |
download | gdb-3b35ec75cb0811cb76b4c4aa347f2878c20222f3.zip gdb-3b35ec75cb0811cb76b4c4aa347f2878c20222f3.tar.gz gdb-3b35ec75cb0811cb76b4c4aa347f2878c20222f3.tar.bz2 |
* resrc.c (close_input_stream): zero out cpp_pipe after closing it.
-rw-r--r-- | binutils/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/resrc.c | 5 |
2 files changed, 8 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index ec322db..9bc3c19 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2000-05-25 DJ Delorie <dj@cygnus.com> + + * resrc.c (close_input_stream): zero out cpp_pipe after closing it. + 2000-05-26 Alan Modra <alan@linuxcare.com.au> * Makefile.am: Update dependencies with "make dep-am" diff --git a/binutils/resrc.c b/binutils/resrc.c index 8c3c9a7..814809e 100644 --- a/binutils/resrc.c +++ b/binutils/resrc.c @@ -499,7 +499,10 @@ static void close_input_stream () { if (cpp_pipe != NULL) - pclose (cpp_pipe); + { + pclose (cpp_pipe); + cpp_pipe = NULL; + } if (istream_type == ISTREAM_FILE) { |