mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-30 13:27:37 +00:00
Silence uninitialized warning
This commit is contained in:
parent
7629ea5d8d
commit
e640a77c9f
@ -620,7 +620,7 @@ int git_packfile_unpack(
|
|||||||
struct pack_chain_elem *elem = NULL, *stack;
|
struct pack_chain_elem *elem = NULL, *stack;
|
||||||
git_pack_cache_entry *cached = NULL;
|
git_pack_cache_entry *cached = NULL;
|
||||||
struct pack_chain_elem small_stack[SMALL_STACK_SIZE];
|
struct pack_chain_elem small_stack[SMALL_STACK_SIZE];
|
||||||
size_t stack_size, elem_pos;
|
size_t stack_size = 0, elem_pos;
|
||||||
git_otype base_type;
|
git_otype base_type;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user