From f865597c8963ef23f4c2c9d0f58334d03a9c5305 Mon Sep 17 00:00:00 2001 From: Sergey Poznyakoff Date: Mon, 7 Nov 2005 02:50:14 +0000 Subject: [PATCH] Incremental options are allowed with --format=pax (tar_stat_destroy): Free dumpdir --- src/tar.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) 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)); } -- 2.44.0