Merge branch 'rs/archive-plug-leak-refname'

Memleak fix.

* rs/archive-plug-leak-refname:
  archive: release refname after use
This commit is contained in:
Junio C Hamano 2020-11-25 15:24:53 -08:00
commit 3eebb3e044
2 changed files with 2 additions and 1 deletions

View File

@ -658,6 +658,7 @@ int write_archive(int argc, const char **argv, const char *prefix,
rc = ar->write_archive(ar, &args);
string_list_clear_func(&args.extra_files, extra_file_info_clear);
free(args.refname);
return rc;
}

View File

@ -8,7 +8,7 @@ struct repository;
struct archiver_args {
struct repository *repo;
const char *refname;
char *refname;
const char *prefix;
const char *base;
size_t baselen;