From: Rene Scharfe Date: Sun, 10 Sep 2006 16:10:01 +0000 (+0200) Subject: Use xstrdup instead of strdup in builtin-{tar,zip}-tree.c X-Git-Tag: v1.4.3-rc1~90^2~9 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=326711c16879792da8d7159bf29d080569c3a1e0;p=git.git Use xstrdup instead of strdup in builtin-{tar,zip}-tree.c Signed-off-by: Rene Scharfe Signed-off-by: Junio C Hamano (cherry picked from 5d2aea4cb383a43e40d47ab69d8ad7a495df6ea2 commit) --- diff --git a/builtin-tar-tree.c b/builtin-tar-tree.c index c20eb0e36..e8e492fa0 100644 --- a/builtin-tar-tree.c +++ b/builtin-tar-tree.c @@ -390,7 +390,7 @@ int write_tar_archive(struct archiver_args *args) write_global_extended_header(args->commit_sha1); if (args->base && plen > 0 && args->base[plen - 1] == '/') { - char *base = strdup(args->base); + char *base = xstrdup(args->base); int baselen = strlen(base); while (baselen > 0 && base[baselen - 1] == '/') diff --git a/builtin-zip-tree.c b/builtin-zip-tree.c index 4e796338a..fdac2bdd7 100644 --- a/builtin-zip-tree.c +++ b/builtin-zip-tree.c @@ -363,7 +363,7 @@ int write_zip_archive(struct archiver_args *args) zip_dir_size = ZIP_DIRECTORY_MIN_SIZE; if (args->base && plen > 0 && args->base[plen - 1] == '/') { - char *base = strdup(args->base); + char *base = xstrdup(args->base); int baselen = strlen(base); while (baselen > 0 && base[baselen - 1] == '/')