зеркало из https://github.com/microsoft/git.git
Merge branch 'rs/archive-plug-leak-refname'
Memleak fix. * rs/archive-plug-leak-refname: archive: release refname after use
This commit is contained in:
Коммит
3eebb3e044
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче