- use bb_xchdir instead of ignoring eventual errors of chdir
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Sat, 10 Jun 2006 11:29:44 +0000 (11:29 -0000)
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Sat, 10 Jun 2006 11:29:44 +0000 (11:29 -0000)
  Thanks to Erik Hovland

archival/dpkg_deb.c
archival/rpm.c

index b99f227..48a1ac1 100644 (file)
@@ -89,8 +89,8 @@ int dpkg_deb_main(int argc, char **argv)
                extract_dir = argv[optind];
        }
        if (extract_dir) {
-               mkdir(extract_dir, 0777);
-               chdir(extract_dir); /* error check? */
+               mkdir(extract_dir, 0777); /* bb_make_directory(extract_dir, 0777, 0) */
+               bb_xchdir(extract_dir);
        }
        unpack_ar_archive(ar_archive);
 
index 9bbc4a8..0755789 100644 (file)
@@ -198,7 +198,7 @@ void extract_cpio_gz(int fd) {
                bb_error_msg_and_die("Invalid gzip magic");
        }
        check_header_gzip(archive_handle->src_fd);
-       chdir("/"); // Install RPM's to root
+       bb_xchdir("/"); // Install RPM's to root
 
        archive_handle->src_fd = open_transformer(archive_handle->src_fd, inflate_gunzip);
        archive_handle->offset = 0;