diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-03-17 13:18:59 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-03-17 13:18:59 -0700 |
commit | fffe2e140420f75d6ad06ab9356b337570572b9b (patch) | |
tree | 216a77941f22567cc86683c576a1c84caabab387 /src/unexaix.c | |
parent | 09f6ff021c99c2b80f39e6d8a54ef556ea108a83 (diff) | |
download | emacs-fffe2e140420f75d6ad06ab9356b337570572b9b.tar.gz emacs-fffe2e140420f75d6ad06ab9356b337570572b9b.tar.bz2 emacs-fffe2e140420f75d6ad06ab9356b337570572b9b.zip |
Restore failure returns to unexaix.c, unexcoff.c, unexcw.c
Diffstat (limited to 'src/unexaix.c')
-rw-r--r-- | src/unexaix.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/unexaix.c b/src/unexaix.c index e6aad2db775..df4c5b8905c 100644 --- a/src/unexaix.c +++ b/src/unexaix.c @@ -142,6 +142,7 @@ unexec (const char *new_name, const char *a_name) || unrelocate_symbols (new, a_out, a_name, new_name) < 0) { close (new); + return; } close (new); |