emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r103682: Restore failure returns to u


From: Paul Eggert
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r103682: Restore failure returns to unexaix.c, unexcoff.c, unexcw.c
Date: Thu, 17 Mar 2011 13:18:59 -0700
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 103682
committer: Paul Eggert <address@hidden>
branch nick: trunk
timestamp: Thu 2011-03-17 13:18:59 -0700
message:
  Restore failure returns to unexaix.c, unexcoff.c, unexcw.c
modified:
  src/unexaix.c
  src/unexcoff.c
  src/unexcw.c
=== modified file 'src/unexaix.c'
--- a/src/unexaix.c     2011-03-17 18:41:30 +0000
+++ b/src/unexaix.c     2011-03-17 20:18:59 +0000
@@ -142,6 +142,7 @@
       || unrelocate_symbols (new, a_out, a_name, new_name) < 0)
     {
       close (new);
+      return;
     }
 
   close (new);

=== modified file 'src/unexcoff.c'
--- a/src/unexcoff.c    2011-03-17 18:41:30 +0000
+++ b/src/unexcoff.c    2011-03-17 20:18:59 +0000
@@ -545,6 +545,7 @@
       )
     {
       close (new);
+      return;
     }
 
   close (new);

=== modified file 'src/unexcw.c'
--- a/src/unexcw.c      2011-03-17 18:41:30 +0000
+++ b/src/unexcw.c      2011-03-17 20:18:59 +0000
@@ -263,6 +263,7 @@
     {
       /* can only dump once */
       printf ("You can only dump Emacs once on this platform.\n");
+      return;
     }
 
   report_sheap_usage (1);


reply via email to

[Prev in Thread] Current Thread [Next in Thread]