mirror of
https://github.com/git/git.git
synced 2024-11-23 18:05:29 +08:00
Merge branch 'ds/sparse-index-protections'
Fix access to uninitialized piece of memory, introduced during this cycle. * ds/sparse-index-protections: sparse-index: fix uninitialized jump
This commit is contained in:
commit
107691cb07
@ -34,7 +34,7 @@ static int convert_to_sparse_rec(struct index_state *istate,
|
|||||||
int i, can_convert = 1;
|
int i, can_convert = 1;
|
||||||
int start_converted = num_converted;
|
int start_converted = num_converted;
|
||||||
enum pattern_match_result match;
|
enum pattern_match_result match;
|
||||||
int dtype;
|
int dtype = DT_UNKNOWN;
|
||||||
struct strbuf child_path = STRBUF_INIT;
|
struct strbuf child_path = STRBUF_INIT;
|
||||||
struct pattern_list *pl = istate->sparse_checkout_patterns;
|
struct pattern_list *pl = istate->sparse_checkout_patterns;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user