Skip to content

Commit 12c465e

Browse files
committed
Merge branch 'jt/fix-fattening-promisor-fetch' into seen
* jt/fix-fattening-promisor-fetch: index-pack: work around false positive use of uninitialized variable
2 parents 42f8d6f + e46fe1a commit 12c465e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

builtin/index-pack.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1811,7 +1811,7 @@ static void repack_local_links(void)
18111811
struct strbuf line = STRBUF_INIT;
18121812
struct oidset_iter iter;
18131813
struct object_id *oid;
1814-
char *base_name;
1814+
char *base_name = NULL;
18151815

18161816
if (!oidset_size(&outgoing_links))
18171817
return;

0 commit comments

Comments
 (0)