Skip to content

Commit 1e11fab

Browse files
committed
builtin/remote.c: use the right kind of STRING_LIST_INIT
Since 4a4b4cd (builtin-remote: Make "remote -v" display push urls, 2009-06-13), the string_list that was initialized with 0 in its strdup_string member is immediately made to strdup its key strings by flipping the strdup_string member to true. When 183113a (string_list: Add STRING_LIST_INIT macro and make use of it., 2010-07-04) has introduced STRING_LIST_INIT macros, it mechanically replaced the initialization to STRING_LIST_INIT_NODUP. Instead, just use the other initialization macro to make it strdup the key from the beginning. Signed-off-by: Junio C Hamano <[email protected]>
1 parent 359da65 commit 1e11fab

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

builtin/remote.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1189,10 +1189,9 @@ static int get_one_entry(struct remote *remote, void *priv)
11891189

11901190
static int show_all(void)
11911191
{
1192-
struct string_list list = STRING_LIST_INIT_NODUP;
1192+
struct string_list list = STRING_LIST_INIT_DUP;
11931193
int result;
11941194

1195-
list.strdup_strings = 1;
11961195
result = for_each_remote(get_one_entry, &list);
11971196

11981197
if (!result) {

0 commit comments

Comments
 (0)