]> git.ipfire.org Git - thirdparty/git.git/blobdiff - archive-tar.c
tests: avoid using `test_i18ncmp`
[thirdparty/git.git] / archive-tar.c
index a971fdc0f6326e0829225d4a2bfe87df48b82a42..05d2455870d7fa95f2575a35a81c3cbe7363e625 100644 (file)
@@ -371,7 +371,7 @@ static int tar_filter_config(const char *var, const char *value, void *data)
 
        ar = find_tar_filter(name, namelen);
        if (!ar) {
-               ar = xcalloc(1, sizeof(*ar));
+               CALLOC_ARRAY(ar, 1);
                ar->name = xmemdupz(name, namelen);
                ar->write_archive = write_tar_filter_archive;
                ar->flags = ARCHIVER_WANT_COMPRESSION_LEVELS |