Pacify picky compilers (this time Sun Workshop).
[p5sagit/p5-mst-13.2.git] / miniperlmain.c
index eec3993..e2415d8 100644 (file)
@@ -1,3 +1,12 @@
+/*    miniperlmain.c
+ *
+ *    Copyright (c) 1997-2002, Larry Wall
+ *
+ *    You may distribute under the terms of either the GNU General Public
+ *    License or the Artistic License, as specified in the README file.
+ *
+ */
+
 /*
  * "The Road goes ever on and on, down from the door where it began."
  */
@@ -72,12 +81,10 @@ main(int argc, char **argv, char **env)
     }
     PL_exit_flags |= PERL_EXIT_DESTRUCT_END;
     exitstatus = perl_parse(my_perl, xs_init, argc, argv, (char **)NULL);
-    if (!exitstatus) {
+    if (!exitstatus)
         perl_run(my_perl);
-        exitstatus = perl_destruct(my_perl);
-    } else {
-        perl_destruct(my_perl);
-    }
+      
+    exitstatus = perl_destruct(my_perl);
 
     perl_free(my_perl);