From: Sergey Poznyakoff Date: Mon, 7 Nov 2005 02:50:14 +0000 (+0000) Subject: Incremental options are allowed with --format=pax X-Git-Url: https://git.dogcows.com/gitweb?a=commitdiff_plain;h=f865597c8963ef23f4c2c9d0f58334d03a9c5305;p=chaz%2Ftar Incremental options are allowed with --format=pax (tar_stat_destroy): Free dumpdir --- diff --git a/src/tar.c b/src/tar.c index 6f21cb5..a25f2ce 100644 --- a/src/tar.c +++ b/src/tar.c @@ -1672,9 +1672,14 @@ decode_options (int argc, char **argv) | FORMAT_MASK (GNU_FORMAT)); - if (incremental_option || multi_volume_option) - assert_format (FORMAT_MASK (OLDGNU_FORMAT) | FORMAT_MASK (GNU_FORMAT)); + if (incremental_option) + assert_format (FORMAT_MASK (OLDGNU_FORMAT) + | FORMAT_MASK (GNU_FORMAT) + | FORMAT_MASK (POSIX_FORMAT)); + if (multi_volume_option) + assert_format (FORMAT_MASK (OLDGNU_FORMAT) | FORMAT_MASK (GNU_FORMAT)); + if (sparse_option) assert_format (FORMAT_MASK (OLDGNU_FORMAT) | FORMAT_MASK (GNU_FORMAT) @@ -1973,5 +1978,6 @@ tar_stat_destroy (struct tar_stat_info *st) free (st->uname); free (st->gname); free (st->sparse_map); + free (st->dumpdir); memset (st, 0, sizeof (*st)); }