replace memset with string-list initializers
Using memset and then manually setting values of the string-list members is not future proof as the internal representation of string-list may change any time. Use `string_list_init()` or STRING_LIST_INIT_* macros instead of memset. Signed-off-by: Tanay Abhra <tanayabh@gmail.com> Reviewed-by: Matthieu Moy <Matthieu.Moy@imag.fr> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
committed by
Junio C Hamano
parent
3ed3f5fe85
commit
f93d7c6fa0
@ -544,10 +544,7 @@ static int push_submodule(const char *path)
|
||||
int push_unpushed_submodules(unsigned char new_sha1[20], const char *remotes_name)
|
||||
{
|
||||
int i, ret = 1;
|
||||
struct string_list needs_pushing;
|
||||
|
||||
memset(&needs_pushing, 0, sizeof(struct string_list));
|
||||
needs_pushing.strdup_strings = 1;
|
||||
struct string_list needs_pushing = STRING_LIST_INIT_DUP;
|
||||
|
||||
if (!find_unpushed_submodules(new_sha1, remotes_name, &needs_pushing))
|
||||
return 1;
|
||||
|
||||
Reference in New Issue
Block a user