Johannes Schindelin <johannes.schindelin@xxxxxx> writes: > Discovered by Coverity. > > Signed-off-by: Johannes Schindelin <johannes.schindelin@xxxxxx> > --- > builtin/cat-file.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/builtin/cat-file.c b/builtin/cat-file.c > index 1890d7a6390..9af863e7915 100644 > --- a/builtin/cat-file.c > +++ b/builtin/cat-file.c > @@ -165,6 +165,7 @@ static int cat_one_file(int opt, const char *exp_type, const char *obj_name, > die("git cat-file %s: bad file", obj_name); > > write_or_die(1, buf, size); > + free(buf); > return 0; > } This is a border-line "Meh". Just like we do not free resources immediately before calling die(), we can leave this as-is as the only thing that happens after this is a return from cmd_cat_file() back to main() that exits. The patch is not wrong per-se, so I've applied it anyway, though. Thanks.