mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
coverity: fix possible resource leak of descendants_buffer in _print_historical_lv fn
This commit is contained in:
parent
cfe7d2368c
commit
02d67848eb
@ -858,7 +858,7 @@ static int _print_historical_lv(struct formatter *f, struct historical_logical_v
|
||||
if (!_alloc_printed_indirect_descendants(&hlv->indirect_glvs, &descendants_buffer))
|
||||
goto_out;
|
||||
|
||||
outnl(f);
|
||||
outnlgo(f);
|
||||
outfgo(f, "%s {", hlv->name);
|
||||
_inc_indent(f);
|
||||
|
||||
|
@ -22,6 +22,7 @@
|
||||
#define outf(args...) do {if (!out_text(args)) return_0;} while (0)
|
||||
#define outfgo(args...) do {if (!out_text(args)) goto_out;} while (0)
|
||||
#define outnl(f) do {if (!out_newline(f)) return_0;} while (0)
|
||||
#define outnlgo(f) do {if (!out_newline(f)) goto_out;} while (0)
|
||||
|
||||
struct formatter;
|
||||
struct lv_segment;
|
||||
|
Loading…
Reference in New Issue
Block a user