remove cleanUpAndFail, and replace it with exit(). because that's what
authorAaron Lehmann <aaronl@vitelius.com>
Sun, 23 Jun 2002 21:56:13 +0000 (21:56 -0000)
committerAaron Lehmann <aaronl@vitelius.com>
Sun, 23 Jun 2002 21:56:13 +0000 (21:56 -0000)
it does unless srcMode was set, and srcMode is never set.

archival/bunzip2.c

index d24f383cfbcbb62513457d55485081e573a6d35d..fd639a4e8e1a789bc6918a52f673d70e29ffd075 100644 (file)
 
 #define BZ_MAX_CODE_LEN    23
 #define OM_TEST          3
-#define SM_F2F 3
 
 typedef struct {
        char *next_in;
@@ -343,24 +342,6 @@ static unsigned char myfeof(FILE *f)
        return(FALSE);
 }
 
-static void cleanUpAndFail(int ec)
-{
-       int retVal;
-
-       if ((srcMode == SM_F2F) && (opMode != OM_TEST) && deleteOutputOnInterrupt) {
-               if (outputHandleJustInCase != NULL) {
-                       fclose(outputHandleJustInCase);
-               }
-               retVal = remove(outName);
-               if (retVal != 0) {
-                       error_msg("%s: WARNING: deletion of output file (apparently) failed.\n", applet_name);
-               }
-       }
-
-       exit(ec);
-}
-
-
 void BZ2_hbCreateDecodeTables(int *limit, int *base, int *perm, unsigned char *length, int minLen, int maxLen, int alphaSize )
 {
        int pp, i, j, vec;
@@ -1783,15 +1764,15 @@ errhandler_io:
                        error_msg("\n%s: I/O or other error, bailing out.  "
                                "Possible reason follows.\n", applet_name);
                        perror(applet_name);
-                       cleanUpAndFail(1);
+                       exit(1);
                case BZ_DATA_ERROR:
                        error_msg("\n%s: Data integrity error when decompressing.\n", applet_name);
-                       cleanUpAndFail(2);
+                       exit(2);
                case BZ_UNEXPECTED_EOF:
                        error_msg("\n%s: Compressed file ends unexpectedly;\n\t"
                                "perhaps it is corrupted?  *Possible* reason follows.\n", applet_name);
                        perror(applet_name);
-                       cleanUpAndFail(2);
+                       exit(2);
                case BZ_DATA_ERROR_MAGIC:
                        if (zStream != stdin) {
                                fclose(zStream);