Merge branch 'ta/string-list-init'
* ta/string-list-init: replace memset with string-list initializers string-list: add string_list initializer helper function
This commit is contained in:
@ -2059,12 +2059,9 @@ void init_merge_options(struct merge_options *o)
|
||||
if (o->verbosity >= 5)
|
||||
o->buffer_output = 0;
|
||||
strbuf_init(&o->obuf, 0);
|
||||
memset(&o->current_file_set, 0, sizeof(struct string_list));
|
||||
o->current_file_set.strdup_strings = 1;
|
||||
memset(&o->current_directory_set, 0, sizeof(struct string_list));
|
||||
o->current_directory_set.strdup_strings = 1;
|
||||
memset(&o->df_conflict_file_set, 0, sizeof(struct string_list));
|
||||
o->df_conflict_file_set.strdup_strings = 1;
|
||||
string_list_init(&o->current_file_set, 1);
|
||||
string_list_init(&o->current_directory_set, 1);
|
||||
string_list_init(&o->df_conflict_file_set, 1);
|
||||
}
|
||||
|
||||
int parse_merge_opt(struct merge_options *o, const char *s)
|
||||
|
||||
Reference in New Issue
Block a user