Lidong Yan <502024330056@xxxxxxxxxxxxxxxx> writes: > Junio C Hamano <gitster@xxxxxxxxx> write: >> >> Lidong Yan <yldhome2d2@xxxxxxxxx> writes: >> >>> static void prepare_to_use_bloom_filter(struct rev_info *revs) >>> { >>> struct pathspec_item *pi; >>> + struct bloom_keyvec *bloom_keyvec; >> >> This new variable is no longer used, since the code to create a new >> keyvec is in a helper function and its return value is directly >> stored in the array of keyvecs. >> >>> char *path_alloc = NULL; >>> const char *path, *p; >> >> And the "p" variable no longer is used, because the logic it used to >> create a new keyvec is moved elsewhere. > > Will fix in v6, Thanks, FWIW, what I queued have these two already removed from v5. Thanks.