diff options
author | H. Peter Anvin <hpa@zytor.com> | 2009-07-12 12:11:52 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-07-12 12:15:35 -0700 |
commit | d0fbb7f0ab355fd4e73d1aab215a2aa387b615c3 (patch) | |
tree | 636f3b611b9fc5d630c547c9cbd65028f7ae360b /output/outieee.c | |
parent | 323fcff32bd5d48a690e14a72c980892924c05ab (diff) | |
download | nasm-d0fbb7f0ab355fd4e73d1aab215a2aa387b615c3.tar.gz nasm-d0fbb7f0ab355fd4e73d1aab215a2aa387b615c3.tar.bz2 nasm-d0fbb7f0ab355fd4e73d1aab215a2aa387b615c3.zip |
Don't fclose() the output in the backend
We fopen() the output file in common code but fclose() it in the
backend. This is bad for a variety of reasons:
1. it is generally an awkward interface to change ownership.
2. we should use ferror() to test for write errors, and that is
better done in common code.
3. it requires more code.
4. we still need to fclose() in common code during error handing.
Thus, move the fclose() of the output out of the backends, and add
fflush() so we can test ferror() on output.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'output/outieee.c')
-rw-r--r-- | output/outieee.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/output/outieee.c b/output/outieee.c index d587d4c..003e4d0 100644 --- a/output/outieee.c +++ b/output/outieee.c @@ -243,7 +243,6 @@ static void ieee_cleanup(int debuginfo) { ieee_write_file(debuginfo); of_ieee.current_dfmt->cleanup(); - fclose(ofp); while (seghead) { struct ieeeSection *segtmp = seghead; seghead = seghead->next; |