coccinelle: make use of the "expression" FREE_AND_NULL() rule
A follow-up to the existing "expression" rule added in an earlier change. This manually excludes a few occurrences, mostly things that resulted in many FREE_AND_NULL() on one line, that'll be manually fixed in a subsequent change. Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
1b83d1251e
commit
e140f7afdd
@ -209,8 +209,7 @@ static int ll_ext_merge(const struct ll_merge_driver *fn,
|
||||
result->size = st.st_size;
|
||||
result->ptr = xmallocz(result->size);
|
||||
if (read_in_full(fd, result->ptr, result->size) != result->size) {
|
||||
free(result->ptr);
|
||||
result->ptr = NULL;
|
||||
FREE_AND_NULL(result->ptr);
|
||||
result->size = 0;
|
||||
}
|
||||
close_bad:
|
||||
|
Reference in New Issue
Block a user