Dump Unicode hash keys also as Unicode,
[p5sagit/p5-mst-13.2.git] / miniperlmain.c
index eec3993..f92ea3e 100644 (file)
@@ -72,12 +72,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);